Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: include/config/SkUserConfig.h

Issue 1099953002: [SkPDFDevice] Enable pathops-based inverse fills (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/pdf/SkPDFDevice.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | src/pdf/SkPDFDevice.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698