Index: src/gpu/gl/GrGLNoOpInterface.h |
diff --git a/src/gpu/gl/GrGLNoOpInterface.h b/src/gpu/gl/GrGLNoOpInterface.h |
index 3e146d330b41ccd7ede8ab2a43045c2ac19b30fb..f347624008bca6a1bd1449482756e61ec25ca94e 100644 |
--- a/src/gpu/gl/GrGLNoOpInterface.h |
+++ b/src/gpu/gl/GrGLNoOpInterface.h |
@@ -161,6 +161,17 @@ GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexImage2D(GrGLenum target, |
GrGLenum type, |
const GrGLvoid* pixels); |
+GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexImage3D(GrGLenum target, |
+ GrGLint level, |
+ GrGLint internalformat, |
+ GrGLsizei width, |
+ GrGLsizei height, |
+ GrGLsizei depth, |
+ GrGLint border, |
+ GrGLenum format, |
+ GrGLenum type, |
+ const GrGLvoid* pixels); |
+ |
GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexParameteri(GrGLenum target, GrGLenum pname, GrGLint param); |
GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexParameteriv(GrGLenum target, |
@@ -187,6 +198,18 @@ GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexSubImage2D(GrGLenum target, |
GrGLenum type, |
const GrGLvoid* pixels); |
+GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexSubImage3D(GrGLenum target, |
+ GrGLint level, |
+ GrGLint xoffset, |
+ GrGLint yoffset, |
+ GrGLint zoffset, |
+ GrGLsizei width, |
+ GrGLsizei height, |
+ GrGLsizei depth, |
+ GrGLenum format, |
+ GrGLenum type, |
+ const GrGLvoid* pixels); |
+ |
GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1f(GrGLint location, GrGLfloat v0); |
GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniform1i(GrGLint location, GrGLint v0); |