| Index: gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| diff --git a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| index 6a0acad3cecdccc269ab92f1617cc678b5a4304b..7f79e349072a794fef083cf4ad14c2f34715c8fc 100644
|
| --- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| @@ -49,6 +49,17 @@ void BindBufferBase(GLenum target, GLuint index, GLuint buffer) {
|
| }
|
| }
|
|
|
| +void BindBufferRange(GLenum target,
|
| + GLuint index,
|
| + GLuint buffer,
|
| + GLintptr offset,
|
| + GLsizeiptr size) {
|
| + gles2::cmds::BindBufferRange* c = GetCmdSpace<gles2::cmds::BindBufferRange>();
|
| + if (c) {
|
| + c->Init(target, index, buffer, offset, size);
|
| + }
|
| +}
|
| +
|
| void BindFramebuffer(GLenum target, GLuint framebuffer) {
|
| gles2::cmds::BindFramebuffer* c = GetCmdSpace<gles2::cmds::BindFramebuffer>();
|
| if (c) {
|
|
|