| Index: gpu/command_buffer/client/gles2_implementation_impl_autogen.h
|
| diff --git a/gpu/command_buffer/client/gles2_implementation_impl_autogen.h b/gpu/command_buffer/client/gles2_implementation_impl_autogen.h
|
| index e7ef7691755286f300146ce2abf6bd323fe4d9ab..02551b4b4e6ec9b7cf21c63f14a27302359f3320 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation_impl_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_implementation_impl_autogen.h
|
| @@ -34,6 +34,17 @@ void GLES2Implementation::BindBuffer(GLenum target, GLuint buffer) {
|
| CheckGLError();
|
| }
|
|
|
| +void GLES2Implementation::BindBufferBase(GLenum target,
|
| + GLuint index,
|
| + GLuint buffer) {
|
| + GPU_CLIENT_SINGLE_THREAD_CHECK();
|
| + GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glBindBufferBase("
|
| + << GLES2Util::GetStringIndexedBufferTarget(target) << ", "
|
| + << index << ", " << buffer << ")");
|
| + helper_->BindBufferBase(target, index, buffer);
|
| + CheckGLError();
|
| +}
|
| +
|
| void GLES2Implementation::BindFramebuffer(GLenum target, GLuint framebuffer) {
|
| GPU_CLIENT_SINGLE_THREAD_CHECK();
|
| GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glBindFramebuffer("
|
|
|