| 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 074502c31b69f857619b0877f32be8b15cc926f7..3277d63569278e0bf828720ad4ee97e217ebc94f 100644
|
| --- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| @@ -2237,6 +2237,19 @@ void CopyTextureCHROMIUM(GLenum target,
|
| }
|
| }
|
|
|
| +void CopySubTextureCHROMIUM(GLenum target,
|
| + GLenum source_id,
|
| + GLenum dest_id,
|
| + GLint level,
|
| + GLint xoffset,
|
| + GLint yoffset) {
|
| + gles2::cmds::CopySubTextureCHROMIUM* c =
|
| + GetCmdSpace<gles2::cmds::CopySubTextureCHROMIUM>();
|
| + if (c) {
|
| + c->Init(target, source_id, dest_id, level, xoffset, yoffset);
|
| + }
|
| +}
|
| +
|
| void DrawArraysInstancedANGLE(GLenum mode,
|
| GLint first,
|
| GLsizei count,
|
|
|