| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 /* Determines whether to build code that supports the GPU backend. Some classes | 144 /* Determines whether to build code that supports the GPU backend. Some classes |
| 145 that are not GPU-specific, such as SkShader subclasses, have optional code | 145 that are not GPU-specific, such as SkShader subclasses, have optional code |
| 146 that is used allows them to interact with the GPU backend. If you'd like to | 146 that is used allows them to interact with the GPU backend. If you'd like to |
| 147 omit this code set SK_SUPPORT_GPU to 0. This also allows you to omit the gpu | 147 omit this code set SK_SUPPORT_GPU to 0. This also allows you to omit the gpu |
| 148 directories from your include search path when you're not building the GPU | 148 directories from your include search path when you're not building the GPU |
| 149 backend. Defaults to 1 (build the GPU code). | 149 backend. Defaults to 1 (build the GPU code). |
| 150 */ | 150 */ |
| 151 //#define SK_SUPPORT_GPU 1 | 151 //#define SK_SUPPORT_GPU 1 |
| 152 | 152 |
| 153 | 153 |
| 154 /* The PDF generation code uses Path Ops to generate inverse fills and complex | 154 /* The PDF generation code uses Path Ops to handle complex clipping paths, |
| 155 * clipping paths, but at this time, Path Ops is not release ready yet. So, | 155 * but at this time, Path Ops is not release ready yet. So, the code is |
| 156 * the code is hidden behind this #define guard. If you are feeling adventurous | 156 * hidden behind this #define guard. If you are feeling adventurous and |
| 157 * and want the latest and greatest PDF generation code, uncomment the #define. | 157 * want the latest and greatest PDF generation code, uncomment the #define. |
| 158 * When Path Ops is release ready, the define guards and this user config | 158 * When Path Ops is release ready, the define guards and this user config |
| 159 * define should be removed entirely. | 159 * define should be removed entirely. |
| 160 */ | 160 */ |
| 161 //#define SK_PDF_USE_PATHOPS | 161 //#define SK_PDF_USE_PATHOPS_CLIPPING |
| 162 | 162 |
| 163 #endif | 163 #endif |
| OLD | NEW |