| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 | 185 |
| 186 /* Determines whether to build code that supports the GPU backend. Some classes | 186 /* Determines whether to build code that supports the GPU backend. Some classes |
| 187 that are not GPU-specific, such as SkShader subclasses, have optional code | 187 that are not GPU-specific, such as SkShader subclasses, have optional code |
| 188 that is used allows them to interact with the GPU backend. If you'd like to | 188 that is used allows them to interact with the GPU backend. If you'd like to |
| 189 omit this code set SK_SUPPORT_GPU to 0. This also allows you to omit the gpu | 189 omit this code set SK_SUPPORT_GPU to 0. This also allows you to omit the gpu |
| 190 directories from your include search path when you're not building the GPU | 190 directories from your include search path when you're not building the GPU |
| 191 backend. Defaults to 1 (build the GPU code). | 191 backend. Defaults to 1 (build the GPU code). |
| 192 */ | 192 */ |
| 193 //#define SK_SUPPORT_GPU 1 | 193 //#define SK_SUPPORT_GPU 1 |
| 194 | 194 |
| 195 |
| 196 /* The PDF generation code uses Path Ops to generate inverse fills and complex |
| 197 * clipping paths, but at this time, Path Ops is not release ready yet. So, |
| 198 * the code is hidden behind this #define guard. If you are feeling adventurous |
| 199 * and want the latest and greatest PDF generation code, uncomment the #define. |
| 200 * When Path Ops is release ready, the define guards and this user config |
| 201 * define should be removed entirely. |
| 202 */ |
| 203 //#define SK_PDF_USE_PATHOPS |
| 204 |
| 195 #endif | 205 #endif |
| OLD | NEW |