Index: src/gpu/gl/GrGLUtil.h |
diff --git a/src/gpu/gl/GrGLUtil.h b/src/gpu/gl/GrGLUtil.h |
index 06210ee1ab74008eac0a54012b18a4902d4e21e7..5025db31d61ea8feac32154e581958969b122f42 100644 |
--- a/src/gpu/gl/GrGLUtil.h |
+++ b/src/gpu/gl/GrGLUtil.h |
@@ -130,13 +130,13 @@ template<int MatrixSize> void GrGLGetMatrix(GrGLfloat* dest, const SkMatrix& src |
#define GR_GL_CHECK_ERROR_IMPL(IFACE, X) |
#endif |
-// internal macro to conditionally log the gl call using GrPrintf based on |
+// internal macro to conditionally log the gl call using SkDebugf based on |
// compile-time and run-time flags. |
#if GR_GL_LOG_CALLS |
extern bool gLogCallsGL; |
#define GR_GL_LOG_CALLS_IMPL(X) \ |
if (gLogCallsGL) \ |
- GrPrintf(GR_FILE_AND_LINE_STR "GL: " #X "\n") |
+ SkDebugf(GR_FILE_AND_LINE_STR "GL: " #X "\n") |
#else |
#define GR_GL_LOG_CALLS_IMPL(X) |
#endif |