| 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 |
| 8 #ifndef SkPostConfig_DEFINED | 10 #ifndef SkPostConfig_DEFINED |
| 9 #define SkPostConfig_DEFINED | 11 #define SkPostConfig_DEFINED |
| 10 | 12 |
| 11 #if defined(SK_BUILD_FOR_WIN32) | 13 #if defined(SK_BUILD_FOR_WIN32) |
| 12 # define SK_BUILD_FOR_WIN | 14 # define SK_BUILD_FOR_WIN |
| 13 #endif | 15 #endif |
| 14 | 16 |
| 15 #if defined(SK_DEBUG) && defined(SK_RELEASE) | 17 #if defined(SK_DEBUG) && defined(SK_RELEASE) |
| 16 # error "cannot define both SK_DEBUG and SK_RELEASE" | 18 # error "cannot define both SK_DEBUG and SK_RELEASE" |
| 17 #elif !defined(SK_DEBUG) && !defined(SK_RELEASE) | 19 #elif !defined(SK_DEBUG) && !defined(SK_RELEASE) |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 # define SK_GAMMA_EXPONENT (2.2f) | 356 # define SK_GAMMA_EXPONENT (2.2f) |
| 355 #endif | 357 #endif |
| 356 | 358 |
| 357 ////////////////////////////////////////////////////////////////////// | 359 ////////////////////////////////////////////////////////////////////// |
| 358 | 360 |
| 359 #ifndef GR_TEST_UTILS | 361 #ifndef GR_TEST_UTILS |
| 360 # define GR_TEST_UTILS 1 | 362 # define GR_TEST_UTILS 1 |
| 361 #endif | 363 #endif |
| 362 | 364 |
| 363 #endif // SkPostConfig_DEFINED | 365 #endif // SkPostConfig_DEFINED |
| OLD | NEW |