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 = [
|
2019-05-01 14:43:56 +00:00
|
|
|
"SK_DISABLE_REDUCE_OPLIST_SPLITTING",
|
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",
|
2018-10-12 02:05:14 +00:00
|
|
|
|
2018-11-08 00:54:33 +00:00
|
|
|
# API staging
|
2020-01-13 14:40:56 +00:00
|
|
|
"SK_SUPPORT_LEGACY_CANVAS_MATRIX_VIRTUALS",
|
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
|
|
|
]
|
2019-11-13 23:12:07 +00:00
|
|
|
|
|
|
|
if (!is_fuchsia) {
|
|
|
|
flutter_defines += [ "SK_GL" ]
|
|
|
|
}
|