| Index: gpu/command_buffer/client/gles2_interface_stub_autogen.h
|
| diff --git a/gpu/command_buffer/client/gles2_interface_stub_autogen.h b/gpu/command_buffer/client/gles2_interface_stub_autogen.h
|
| index c2f492049ec3c24e5ce83cee9c14e2448d1d1eae..d9f995ef11602df86f9f7d621c20cc4dd5623579 100644
|
| --- a/gpu/command_buffer/client/gles2_interface_stub_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_interface_stub_autogen.h
|
| @@ -18,6 +18,7 @@ void BindAttribLocation(GLuint program,
|
| GLuint index,
|
| const char* name) override;
|
| void BindBuffer(GLenum target, GLuint buffer) override;
|
| +void BindBufferBase(GLenum target, GLuint index, GLuint buffer) override;
|
| void BindFramebuffer(GLenum target, GLuint framebuffer) override;
|
| void BindRenderbuffer(GLenum target, GLuint renderbuffer) override;
|
| void BindSampler(GLuint unit, GLuint sampler) override;
|
| @@ -293,6 +294,16 @@ void TexImage2D(GLenum target,
|
| GLenum format,
|
| GLenum type,
|
| const void* pixels) override;
|
| +void TexImage3D(GLenum target,
|
| + GLint level,
|
| + GLint internalformat,
|
| + GLsizei width,
|
| + GLsizei height,
|
| + GLsizei depth,
|
| + GLint border,
|
| + GLenum format,
|
| + GLenum type,
|
| + const void* pixels) override;
|
| void TexParameterf(GLenum target, GLenum pname, GLfloat param) override;
|
| void TexParameterfv(GLenum target,
|
| GLenum pname,
|
| @@ -314,6 +325,17 @@ void TexSubImage2D(GLenum target,
|
| GLenum format,
|
| GLenum type,
|
| const void* pixels) override;
|
| +void TexSubImage3D(GLenum target,
|
| + GLint level,
|
| + GLint xoffset,
|
| + GLint yoffset,
|
| + GLint zoffset,
|
| + GLsizei width,
|
| + GLsizei height,
|
| + GLsizei depth,
|
| + GLenum format,
|
| + GLenum type,
|
| + const void* pixels) override;
|
| void Uniform1f(GLint location, GLfloat x) override;
|
| void Uniform1fv(GLint location, GLsizei count, const GLfloat* v) override;
|
| void Uniform1i(GLint location, GLint x) override;
|
|
|