Brian Osman | f2c9014 | 2017-07-13 15:50:03 -0400 | [diff] [blame] | 1 | # Copyright 2017 Google Inc. |
| 2 | # |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
Robert Phillips | 193de5d | 2017-11-10 08:22:28 -0500 | [diff] [blame] | 5 | flutter_defines = [ |
Robert Phillips | a3f7026 | 2018-02-08 10:59:38 -0500 | [diff] [blame] | 6 | "SK_DISABLE_EXPLICIT_GPU_RESOURCE_ALLOCATION", |
| 7 | "SK_DISABLE_RENDER_TARGET_SORTING", |
Leon Scroggins III | 4a0ba28 | 2018-08-22 11:31:32 -0400 | [diff] [blame] | 8 | "SK_LEGACY_SKCODEC_NONE_ENUM", |
Mike Klein | 05caa69 | 2018-10-04 15:28:07 -0400 | [diff] [blame] | 9 | |
| 10 | # Remove software rasterizers to save some code size. |
| 11 | "SK_DISABLE_AAA", |
| 12 | "SK_DISABLE_DAA", |
Mike Klein | 419709d | 2018-10-11 22:05:14 -0400 | [diff] [blame] | 13 | |
| 14 | # Fast low-precision software rendering isn't a priority for Flutter. |
Mike Klein | 89e2f3c | 2018-10-17 13:51:30 -0400 | [diff] [blame] | 15 | "SK_DISABLE_LEGACY_SHADERCONTEXT", |
Mike Klein | 419709d | 2018-10-11 22:05:14 -0400 | [diff] [blame] | 16 | "SK_DISABLE_LOWP_RASTER_PIPELINE", |
Mike Klein | 3c9fbae | 2018-10-22 09:48:01 -0400 | [diff] [blame] | 17 | "SK_FORCE_RASTER_PIPELINE_BLITTER", |
Robert Phillips | 193de5d | 2017-11-10 08:22:28 -0500 | [diff] [blame] | 18 | ] |