Index: src/gpu/gl/GrGLNoOpInterface.cpp |
diff --git a/src/gpu/gl/GrGLNoOpInterface.cpp b/src/gpu/gl/GrGLNoOpInterface.cpp |
index df32d2a7cfc684c04b2ff33b6711c97d3ec0b6b5..adbf629ba6f45add2f23dd857bf6b7f04121158b 100644 |
--- a/src/gpu/gl/GrGLNoOpInterface.cpp |
+++ b/src/gpu/gl/GrGLNoOpInterface.cpp |
@@ -238,6 +238,18 @@ GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexImage2D(GrGLenum target, |
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) { |
@@ -271,6 +283,19 @@ GrGLvoid GR_GL_FUNCTION_TYPE noOpGLTexSubImage2D(GrGLenum target, |
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) { |
} |