Index: src/gpu/gl/debug/GrGLCreateDebugInterface.cpp |
diff --git a/src/gpu/gl/debug/GrGLCreateDebugInterface.cpp b/src/gpu/gl/debug/GrGLCreateDebugInterface.cpp |
index 0666fddc4940f91c32ee28cd19afa544271c29bc..d517aa86c0ede3fcf64700ef34c1572e4eb65f6f 100644 |
--- a/src/gpu/gl/debug/GrGLCreateDebugInterface.cpp |
+++ b/src/gpu/gl/debug/GrGLCreateDebugInterface.cpp |
@@ -523,6 +523,9 @@ GrGLvoid GR_GL_FUNCTION_TYPE debugGLGenBuffers(GrGLsizei n, GrGLuint* ids) { |
debugGenObjs(GrDebugGL::kBuffer_ObjTypes, n, ids); |
} |
+GrGLvoid GR_GL_FUNCTION_TYPE debugGLGenerateMipmap(GrGLenum level) { |
+} |
+ |
GrGLvoid GR_GL_FUNCTION_TYPE debugGLGenFramebuffers(GrGLsizei n, |
GrGLuint* ids) { |
debugGenObjs(GrDebugGL::kFrameBuffer_ObjTypes, n, ids); |
@@ -824,6 +827,7 @@ const GrGLInterface* GrGLCreateDebugInterface() { |
interface->fFinish = noOpGLFinish; |
interface->fFlush = noOpGLFlush; |
interface->fFrontFace = noOpGLFrontFace; |
+ interface->fGenerateMipmap = debugGLGenerateMipmap; |
interface->fGenBuffers = debugGLGenBuffers; |
interface->fGenQueries = noOpGLGenIds; |
interface->fGenTextures = debugGLGenTextures; |