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-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
|
|
|
|
2020-11-16 20:46:17 +00:00
|
|
|
# Things we do for Flutter but don't want in general text layout
|
|
|
|
"SK_PARAGRAPH_LIBTXT_SPACES_RESOLUTION",
|
|
|
|
|
2020-04-07 01:32:43 +00:00
|
|
|
# Staging
|
2021-07-07 13:33:47 +00:00
|
|
|
"SK_LEGACY_INNER_JOINS",
|
2021-11-22 17:22:16 +00:00
|
|
|
"SK_LEGACY_IGNORE_DRAW_VERTICES_BLEND_WITH_NO_SHADER",
|
2020-04-07 01:32:43 +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) {
|
2020-09-15 01:17:47 +00:00
|
|
|
flutter_defines += [
|
|
|
|
"SK_GL",
|
|
|
|
"SK_DISABLE_EFFECT_DESERIALIZATION",
|
|
|
|
]
|
2019-11-13 23:12:07 +00:00
|
|
|
}
|