| 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 68a1632034cecaa3680d5c6d19f3d84fe531f44c..858707914186f8b765be4326cecc10e45e49b79d 100644
|
| --- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| @@ -2414,6 +2414,14 @@ void UnmapBuffer(GLenum target) {
|
| }
|
| }
|
|
|
| +void FlushMappedBufferRange(GLenum target, GLintptr offset, GLsizeiptr size) {
|
| + gles2::cmds::FlushMappedBufferRange* c =
|
| + GetCmdSpace<gles2::cmds::FlushMappedBufferRange>();
|
| + if (c) {
|
| + c->Init(target, offset, size);
|
| + }
|
| +}
|
| +
|
| void ResizeCHROMIUM(GLuint width,
|
| GLuint height,
|
| GLfloat scale_factor,
|
|
|