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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 | 201 |
202 /* Determines whether to build code that supports the GPU backend. Some classes | 202 /* Determines whether to build code that supports the GPU backend. Some classes |
203 that are not GPU-specific, such as SkShader subclasses, have optional code | 203 that are not GPU-specific, such as SkShader subclasses, have optional code |
204 that is used allows them to interact with the GPU backend. If you'd like to | 204 that is used allows them to interact with the GPU backend. If you'd like to |
205 omit this code set SK_SUPPORT_GPU to 0. This also allows you to omit the gpu | 205 omit this code set SK_SUPPORT_GPU to 0. This also allows you to omit the gpu |
206 directories from your include search path when you're not building the GPU | 206 directories from your include search path when you're not building the GPU |
207 backend. Defaults to 1 (build the GPU code). | 207 backend. Defaults to 1 (build the GPU code). |
208 */ | 208 */ |
209 //#define SK_SUPPORT_GPU 1 | 209 //#define SK_SUPPORT_GPU 1 |
210 | 210 |
| 211 |
| 212 /* The PDF generation code uses Path Ops to generate inverse fills and complex |
| 213 * clipping paths, but at this time, Path Ops is not release ready yet. So, |
| 214 * the code is hidden behind this #define guard. If you are feeling adventurous |
| 215 * and want the latest and greatest PDF generation code, uncomment the #define. |
| 216 * When Path Ops is release ready, the define guards and this user config |
| 217 * define should be removed entirely. |
| 218 */ |
| 219 //#define SK_PDF_USE_PATHOPS |
| 220 |
211 #endif | 221 #endif |
OLD | NEW |