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

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

Issue 19519017: Inverse fill support in PDF (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Fix indent Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « gyp/gmslides.gypi ('k') | include/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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « gyp/gmslides.gypi ('k') | include/pdf/SkPDFDevice.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698