Index: src/gpu/gl/GrGpuGL.cpp |
=================================================================== |
--- src/gpu/gl/GrGpuGL.cpp (revision 8966) |
+++ src/gpu/gl/GrGpuGL.cpp (working copy) |
@@ -161,8 +161,6 @@ |
GrGLClearErr(fGLContext.interface()); |
if (gPrintStartupSpew) { |
- const GrGLubyte* ext; |
- GL_CALL_RET(ext, GetString(GR_GL_EXTENSIONS)); |
const GrGLubyte* vendor; |
const GrGLubyte* renderer; |
const GrGLubyte* version; |
@@ -174,7 +172,9 @@ |
GrPrintf("------ VENDOR %s\n", vendor); |
GrPrintf("------ RENDERER %s\n", renderer); |
GrPrintf("------ VERSION %s\n", version); |
- GrPrintf("------ EXTENSIONS\n %s \n", ext); |
+ GrPrintf("------ EXTENSIONS\n"); |
+ ctx.info().extensions().print(); |
+ GrPrintf("\n"); |
ctx.info().caps()->print(); |
} |