Chromium Code Reviews| Index: src/gpu/gl/GrGLProgramDesc.h |
| diff --git a/src/gpu/gl/GrGLProgramDesc.h b/src/gpu/gl/GrGLProgramDesc.h |
| index 8c441b09e01df5c7aa330a6325d420d14006ea58..1ef44b64d463f91b294863a1c456ed4e77ef9649 100644 |
| --- a/src/gpu/gl/GrGLProgramDesc.h |
| +++ b/src/gpu/gl/GrGLProgramDesc.h |
| @@ -14,9 +14,9 @@ |
| class GrGpuGL; |
| -// optionally compile the experimental GS code. Set to GR_DEBUG so that debug build bots will |
| +// optionally compile the experimental GS code. Set to SK_DEBUG so that debug build bots will |
| // execute the code. |
| -#define GR_GL_EXPERIMENTAL_GS GR_DEBUG |
| +#define GR_GL_EXPERIMENTAL_GS SK_DEBUG |
|
bsalomon
2013/08/24 02:28:36
#ifdef SK_DEBUG
#define GR_GL_EXPERIMENTAL_GS 1
tfarina
2013/08/24 23:25:49
Done.
|
| /** This class describes a program to generate. It also serves as a program cache key. Very little |