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 3755c3fc9ea8e1d341a7778d3a1de262c85db7c5..79fd529fba858dcee5c5484e2eac6bb7c8e22451 100644 |
--- a/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h |
+++ b/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h |
@@ -517,6 +517,15 @@ void GLES2TraceImplementation::GetActiveUniformBlockName(GLuint program, |
gl_->GetActiveUniformBlockName(program, index, bufsize, length, name); |
} |
+void GLES2TraceImplementation::GetActiveUniformsiv(GLuint program, |
+ GLsizei count, |
+ const GLuint* indices, |
+ GLenum pname, |
+ GLint* params) { |
+ TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::GetActiveUniformsiv"); |
+ gl_->GetActiveUniformsiv(program, count, indices, pname, params); |
+} |
+ |
void GLES2TraceImplementation::GetAttachedShaders(GLuint program, |
GLsizei maxcount, |
GLsizei* count, |
@@ -1721,6 +1730,14 @@ void GLES2TraceImplementation::GetTransformFeedbackVaryingsCHROMIUM( |
gl_->GetTransformFeedbackVaryingsCHROMIUM(program, bufsize, size, info); |
} |
+void GLES2TraceImplementation::GetUniformsES3CHROMIUM(GLuint program, |
+ GLsizei bufsize, |
+ GLsizei* size, |
+ void* info) { |
+ TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::GetUniformsES3CHROMIUM"); |
+ gl_->GetUniformsES3CHROMIUM(program, bufsize, size, info); |
+} |
+ |
GLuint GLES2TraceImplementation::CreateStreamTextureCHROMIUM(GLuint texture) { |
TRACE_EVENT_BINARY_EFFICIENT0("gpu", |
"GLES2Trace::CreateStreamTextureCHROMIUM"); |