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",
|
2018-11-12 16:08:30 +00:00
|
|
|
"SK_LEGACY_SKCODEC_NONE_ENUM",
|
2018-10-04 19:28:07 +00:00
|
|
|
|
2018-11-07 14:38:55 +00:00
|
|
|
# Flutter always wants this https://github.com/flutter/flutter/issues/11402
|
|
|
|
"SK_ENABLE_DUMP_GPU",
|
|
|
|
|
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
|
|
|
|
2018-11-08 00:54:33 +00:00
|
|
|
# API staging
|
2018-11-12 14:45:12 +00:00
|
|
|
"SK_SUPPORT_LEGACY_NESTED_HINTINGENUM",
|
2018-11-08 00:54:33 +00:00
|
|
|
|
2018-10-25 15:35:56 +00:00
|
|
|
# Flutter doesn't deserialize anything.
|
|
|
|
"SK_DISABLE_READBUFFER",
|
2018-11-08 12:08:05 +00:00
|
|
|
"SK_DISABLE_EFFECT_DESERIALIZATION",
|
2018-10-25 15:35:56 +00:00
|
|
|
|
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",
|
2018-10-22 13:48:01 +00:00
|
|
|
"SK_FORCE_RASTER_PIPELINE_BLITTER",
|
2017-11-10 13:22:28 +00:00
|
|
|
]
|