| 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 e1853068d591685f20781b8b99639450f2ebc505..2f6e3a02d6657a8a319b4ccb113dcded9dd2fa2f 100644
|
| --- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| @@ -2528,6 +2528,22 @@ void CompressedCopyTextureCHROMIUM(GLenum target,
|
| }
|
| }
|
|
|
| +void CompressedCopySubTextureCHROMIUM(GLenum target,
|
| + GLenum source_id,
|
| + GLenum dest_id,
|
| + GLint xoffset,
|
| + GLint yoffset,
|
| + GLint x,
|
| + GLint y,
|
| + GLsizei width,
|
| + GLsizei height) {
|
| + gles2::cmds::CompressedCopySubTextureCHROMIUM* c =
|
| + GetCmdSpace<gles2::cmds::CompressedCopySubTextureCHROMIUM>();
|
| + if (c) {
|
| + c->Init(target, source_id, dest_id, xoffset, yoffset, x, y, width, height);
|
| + }
|
| +}
|
| +
|
| void DrawArraysInstancedANGLE(GLenum mode,
|
| GLint first,
|
| GLsizei count,
|
|
|