2017-07-13 19:50:03 +00:00
|
|
|
# Copyright 2017 Google Inc.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
2017-11-10 13:22:28 +00:00
|
|
|
flutter_defines = [
|
2018-02-08 15:59:38 +00:00
|
|
|
"SK_DISABLE_EXPLICIT_GPU_RESOURCE_ALLOCATION",
|
|
|
|
"SK_DISABLE_RENDER_TARGET_SORTING",
|
2018-08-22 15:31:32 +00:00
|
|
|
"SK_LEGACY_SKCODEC_NONE_ENUM",
|
2018-10-04 19:28:07 +00:00
|
|
|
|
|
|
|
# Remove software rasterizers to save some code size.
|
|
|
|
"SK_DISABLE_AAA",
|
|
|
|
"SK_DISABLE_DAA",
|
2018-10-12 02:05:14 +00:00
|
|
|
|
|
|
|
# Fast low-precision software rendering isn't a priority for Flutter.
|
2018-10-17 17:51:30 +00:00
|
|
|
"SK_DISABLE_LEGACY_SHADERCONTEXT",
|
2018-10-12 02:05:14 +00:00
|
|
|
"SK_DISABLE_LOWP_RASTER_PIPELINE",
|
2017-11-10 13:22:28 +00:00
|
|
|
]
|