Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Unified Diff: gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h

Issue 851503003: Update from https://crrev.com/311076 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
diff --git a/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h b/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
index fcd196d52c824bd7a77d9375af8e6e52b106b24b..9bc00eb2dc33b3a4e2ba776f743e85301f7b08c3 100644
--- a/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
+++ b/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
@@ -23,6 +23,10 @@ void GLES2InterfaceStub::BindAttribLocation(GLuint /* program */,
}
void GLES2InterfaceStub::BindBuffer(GLenum /* target */, GLuint /* buffer */) {
}
+void GLES2InterfaceStub::BindBufferBase(GLenum /* target */,
+ GLuint /* index */,
+ GLuint /* buffer */) {
+}
void GLES2InterfaceStub::BindFramebuffer(GLenum /* target */,
GLuint /* framebuffer */) {
}
@@ -499,6 +503,17 @@ void GLES2InterfaceStub::TexImage2D(GLenum /* target */,
GLenum /* type */,
const void* /* pixels */) {
}
+void GLES2InterfaceStub::TexImage3D(GLenum /* target */,
+ GLint /* level */,
+ GLint /* internalformat */,
+ GLsizei /* width */,
+ GLsizei /* height */,
+ GLsizei /* depth */,
+ GLint /* border */,
+ GLenum /* format */,
+ GLenum /* type */,
+ const void* /* pixels */) {
+}
void GLES2InterfaceStub::TexParameterf(GLenum /* target */,
GLenum /* pname */,
GLfloat /* param */) {
@@ -532,6 +547,18 @@ void GLES2InterfaceStub::TexSubImage2D(GLenum /* target */,
GLenum /* type */,
const void* /* pixels */) {
}
+void GLES2InterfaceStub::TexSubImage3D(GLenum /* target */,
+ GLint /* level */,
+ GLint /* xoffset */,
+ GLint /* yoffset */,
+ GLint /* zoffset */,
+ GLsizei /* width */,
+ GLsizei /* height */,
+ GLsizei /* depth */,
+ GLenum /* format */,
+ GLenum /* type */,
+ const void* /* pixels */) {
+}
void GLES2InterfaceStub::Uniform1f(GLint /* location */, GLfloat /* x */) {
}
void GLES2InterfaceStub::Uniform1fv(GLint /* location */,

Powered by Google App Engine
This is Rietveld 408576698