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 6dbbc935a7b523184b557585566160c02cf8c9bc..4efa2a704030728f2a154b39e1823569f537032c 100644 |
--- a/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h |
+++ b/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h |
@@ -1767,12 +1767,13 @@ GLuint GLES2TraceImplementation::CreateStreamTextureCHROMIUM(GLuint texture) { |
return gl_->CreateStreamTextureCHROMIUM(texture); |
} |
-GLuint GLES2TraceImplementation::CreateImageCHROMIUM(ClientBuffer buffer, |
- GLsizei width, |
- GLsizei height, |
- GLenum internalformat) { |
+GLuint GLES2TraceImplementation::CreateImageCHROMIUM( |
+ const ClientBuffer* const buffers, |
+ GLsizei width, |
+ GLsizei height, |
+ GLenum internalformat) { |
TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::CreateImageCHROMIUM"); |
- return gl_->CreateImageCHROMIUM(buffer, width, height, internalformat); |
+ return gl_->CreateImageCHROMIUM(buffers, width, height, internalformat); |
} |
void GLES2TraceImplementation::DestroyImageCHROMIUM(GLuint image_id) { |