| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 // IWYU pragma: private, include "SkTypes.h" | |
| 9 | |
| 10 #ifndef SkPostConfig_DEFINED | 8 #ifndef SkPostConfig_DEFINED |
| 11 #define SkPostConfig_DEFINED | 9 #define SkPostConfig_DEFINED |
| 12 | 10 |
| 13 #if defined(SK_BUILD_FOR_WIN32) | 11 #if defined(SK_BUILD_FOR_WIN32) |
| 14 # define SK_BUILD_FOR_WIN | 12 # define SK_BUILD_FOR_WIN |
| 15 #endif | 13 #endif |
| 16 | 14 |
| 17 #if defined(SK_DEBUG) && defined(SK_RELEASE) | 15 #if defined(SK_DEBUG) && defined(SK_RELEASE) |
| 18 # error "cannot define both SK_DEBUG and SK_RELEASE" | 16 # error "cannot define both SK_DEBUG and SK_RELEASE" |
| 19 #elif !defined(SK_DEBUG) && !defined(SK_RELEASE) | 17 #elif !defined(SK_DEBUG) && !defined(SK_RELEASE) |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 # define SK_GAMMA_EXPONENT (2.2f) | 354 # define SK_GAMMA_EXPONENT (2.2f) |
| 357 #endif | 355 #endif |
| 358 | 356 |
| 359 ////////////////////////////////////////////////////////////////////// | 357 ////////////////////////////////////////////////////////////////////// |
| 360 | 358 |
| 361 #ifndef GR_TEST_UTILS | 359 #ifndef GR_TEST_UTILS |
| 362 # define GR_TEST_UTILS 1 | 360 # define GR_TEST_UTILS 1 |
| 363 #endif | 361 #endif |
| 364 | 362 |
| 365 #endif // SkPostConfig_DEFINED | 363 #endif // SkPostConfig_DEFINED |
| OLD | NEW |