| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2010 Google Inc. | 3 * Copyright 2010 Google Inc. |
| 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 | 10 |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 #endif | 186 #endif |
| 187 | 187 |
| 188 /** | 188 /** |
| 189 * Enable batch debugging output as json. The enabler of this flag is responsib
le for making sure | 189 * Enable batch debugging output as json. The enabler of this flag is responsib
le for making sure |
| 190 * GrAuditTrail is reset occasionally. | 190 * GrAuditTrail is reset occasionally. |
| 191 * TODO make this runtime configurable | 191 * TODO make this runtime configurable |
| 192 */ | 192 */ |
| 193 #if !defined(GR_BATCH_DEBUGGING_OUTPUT) | 193 #if !defined(GR_BATCH_DEBUGGING_OUTPUT) |
| 194 #define GR_BATCH_DEBUGGING_OUTPUT 0 | 194 #define GR_BATCH_DEBUGGING_OUTPUT 0 |
| 195 #endif | 195 #endif |
| 196 |
| 197 /** |
| 198 * Set to 1 to enable pixel local storage path rendering on supported devices. |
| 199 */ |
| 200 #if !defined(GR_ENABLE_PLS_PATH_RENDERING) |
| 201 #define GR_ENABLE_PLS_PATH_RENDERING 1 |
| 196 #endif | 202 #endif |
| 203 |
| 204 #endif |
| OLD | NEW |