Chromium Code Reviews| Index: include/gpu/gl/GrGLConfig.h |
| diff --git a/include/gpu/gl/GrGLConfig.h b/include/gpu/gl/GrGLConfig.h |
| index 81cba1badf0e5ac970594f9ffd21345540d95f4b..65ec1ee4149268a615b1c5d2ecdb42b6ea2e2b6b 100644 |
| --- a/include/gpu/gl/GrGLConfig.h |
| +++ b/include/gpu/gl/GrGLConfig.h |
| @@ -39,7 +39,7 @@ |
| * GR_GL_LOG_CALLS is 1. Defaults to 0. |
| * |
| * GR_GL_CHECK_ERROR: if enabled Gr can do a glGetError() after every GL call. |
| - * Defaults to 1 if GR_DEBUG is set, otherwise 0. When GR_GL_CHECK_ERROR is 1 |
| + * Defaults to 1 if SK_DEBUG is set, otherwise 0. When GR_GL_CHECK_ERROR is 1 |
| * this can be toggled in a debugger using the gCheckErrorGL global. The initial |
| * value of gCheckErrorGL is controlled by by GR_GL_CHECK_ERROR_START. |
| * |
| @@ -107,7 +107,7 @@ |
| */ |
| #if !defined(GR_GL_LOG_CALLS) |
| - #define GR_GL_LOG_CALLS GR_DEBUG |
| + #define GR_GL_LOG_CALLS SK_DEBUG |
|
bsalomon
2013/08/24 02:28:36
Hmm... I don't think this will work. I think we ne
tfarina
2013/08/24 23:25:49
Done.
|
| #endif |
| #if !defined(GR_GL_LOG_CALLS_START) |
| @@ -115,7 +115,7 @@ |
| #endif |
| #if !defined(GR_GL_CHECK_ERROR) |
| - #define GR_GL_CHECK_ERROR GR_DEBUG |
| + #define GR_GL_CHECK_ERROR SK_DEBUG |
| #endif |
| #if !defined(GR_GL_CHECK_ERROR_START) |