| Index: gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| diff --git a/gpu/command_buffer/client/gles2_c_lib_autogen.h b/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| index c28385d5ba4694a5aaf1bc018a737298439e2a54..9264881d8e817858ae16829f2095453a20951a4a 100644
|
| --- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| @@ -27,6 +27,13 @@ void GLES2BindBuffer(GLenum target, GLuint buffer) {
|
| void GLES2BindBufferBase(GLenum target, GLuint index, GLuint buffer) {
|
| gles2::GetGLContext()->BindBufferBase(target, index, buffer);
|
| }
|
| +void GLES2BindBufferRange(GLenum target,
|
| + GLuint index,
|
| + GLuint buffer,
|
| + GLintptr offset,
|
| + GLsizeiptr size) {
|
| + gles2::GetGLContext()->BindBufferRange(target, index, buffer, offset, size);
|
| +}
|
| void GLES2BindFramebuffer(GLenum target, GLuint framebuffer) {
|
| gles2::GetGLContext()->BindFramebuffer(target, framebuffer);
|
| }
|
| @@ -1210,6 +1217,10 @@ extern const NameToFunc g_gles2_function_table[] = {
|
| reinterpret_cast<GLES2FunctionPointer>(glBindBufferBase),
|
| },
|
| {
|
| + "glBindBufferRange",
|
| + reinterpret_cast<GLES2FunctionPointer>(glBindBufferRange),
|
| + },
|
| + {
|
| "glBindFramebuffer",
|
| reinterpret_cast<GLES2FunctionPointer>(glBindFramebuffer),
|
| },
|
|
|