| 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 fd58cf8d8a3340157cc7338cb19f72327d8243e0..8e05baa4f882aa240bf453d6d8d470e5388f91ec 100644
|
| --- a/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h
|
| @@ -41,6 +41,15 @@ void GLES2TraceImplementation::BindBufferBase(GLenum target,
|
| gl_->BindBufferBase(target, index, buffer);
|
| }
|
|
|
| +void GLES2TraceImplementation::BindBufferRange(GLenum target,
|
| + GLuint index,
|
| + GLuint buffer,
|
| + GLintptr offset,
|
| + GLsizeiptr size) {
|
| + TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::BindBufferRange");
|
| + gl_->BindBufferRange(target, index, buffer, offset, size);
|
| +}
|
| +
|
| void GLES2TraceImplementation::BindFramebuffer(GLenum target,
|
| GLuint framebuffer) {
|
| TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::BindFramebuffer");
|
|
|