| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2006 The Android Open Source Project | 3 * Copyright 2006 The Android Open Source Project |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 #ifndef SkUserConfig_DEFINED | 10 #ifndef SkUserConfig_DEFINED |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 | 161 |
| 162 /* The PDF generation code uses Path Ops to generate inverse fills and complex | 162 /* The PDF generation code uses Path Ops to generate inverse fills and complex |
| 163 * clipping paths, but at this time, Path Ops is not release ready yet. So, | 163 * clipping paths, but at this time, Path Ops is not release ready yet. So, |
| 164 * the code is hidden behind this #define guard. If you are feeling adventurous | 164 * the code is hidden behind this #define guard. If you are feeling adventurous |
| 165 * and want the latest and greatest PDF generation code, uncomment the #define. | 165 * and want the latest and greatest PDF generation code, uncomment the #define. |
| 166 * When Path Ops is release ready, the define guards and this user config | 166 * When Path Ops is release ready, the define guards and this user config |
| 167 * define should be removed entirely. | 167 * define should be removed entirely. |
| 168 */ | 168 */ |
| 169 //#define SK_PDF_USE_PATHOPS | 169 //#define SK_PDF_USE_PATHOPS |
| 170 | 170 |
| 171 /* Skia uses these defines as the target of include preprocessor directives. | |
| 172 * The header files pointed to by these defines provide declarations and | |
| 173 * possibly inline implementations of threading primitives. | |
| 174 * | |
| 175 * See SkThread.h for documentation on what these includes must contain. | |
| 176 */ | |
| 177 //#define SK_ATOMICS_PLATFORM_H "SkAtomics_xxx.h" | |
| 178 //#define SK_MUTEX_PLATFORM_H "SkMutex_xxx.h" | |
| 179 //#define SK_BARRIERS_PLATFORM_H "SkBarriers_xxx.h" | |
| 180 | |
| 181 #endif | 171 #endif |
| OLD | NEW |