Index: gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h |
diff --git a/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h b/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h |
index 567dace8013f605c938a33b470ff25bfbe56cec4..fd58cf8d8a3340157cc7338cb19f72327d8243e0 100644 |
--- a/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h |
+++ b/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h |
@@ -34,6 +34,13 @@ void GLES2TraceImplementation::BindBuffer(GLenum target, GLuint buffer) { |
gl_->BindBuffer(target, buffer); |
} |
+void GLES2TraceImplementation::BindBufferBase(GLenum target, |
+ GLuint index, |
+ GLuint buffer) { |
+ TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::BindBufferBase"); |
+ gl_->BindBufferBase(target, index, buffer); |
+} |
+ |
void GLES2TraceImplementation::BindFramebuffer(GLenum target, |
GLuint framebuffer) { |
TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::BindFramebuffer"); |
@@ -873,6 +880,21 @@ void GLES2TraceImplementation::TexImage2D(GLenum target, |
type, pixels); |
} |
+void GLES2TraceImplementation::TexImage3D(GLenum target, |
+ GLint level, |
+ GLint internalformat, |
+ GLsizei width, |
+ GLsizei height, |
+ GLsizei depth, |
+ GLint border, |
+ GLenum format, |
+ GLenum type, |
+ const void* pixels) { |
+ TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::TexImage3D"); |
+ gl_->TexImage3D(target, level, internalformat, width, height, depth, border, |
+ format, type, pixels); |
+} |
+ |
void GLES2TraceImplementation::TexParameterf(GLenum target, |
GLenum pname, |
GLfloat param) { |
@@ -925,6 +947,22 @@ void GLES2TraceImplementation::TexSubImage2D(GLenum target, |
type, pixels); |
} |
+void GLES2TraceImplementation::TexSubImage3D(GLenum target, |
+ GLint level, |
+ GLint xoffset, |
+ GLint yoffset, |
+ GLint zoffset, |
+ GLsizei width, |
+ GLsizei height, |
+ GLsizei depth, |
+ GLenum format, |
+ GLenum type, |
+ const void* pixels) { |
+ TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::TexSubImage3D"); |
+ gl_->TexSubImage3D(target, level, xoffset, yoffset, zoffset, width, height, |
+ depth, format, type, pixels); |
+} |
+ |
void GLES2TraceImplementation::Uniform1f(GLint location, GLfloat x) { |
TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::Uniform1f"); |
gl_->Uniform1f(location, x); |