| Index: gpu/command_buffer/client/gles2_interface_autogen.h
|
| diff --git a/gpu/command_buffer/client/gles2_interface_autogen.h b/gpu/command_buffer/client/gles2_interface_autogen.h
|
| index f6317bb982c44ef2462ba0836ee1e20bfe16c317..0f207c9674c7b0e50de74c084fde1f11b4b6dd1c 100644
|
| --- a/gpu/command_buffer/client/gles2_interface_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_interface_autogen.h
|
| @@ -510,6 +510,11 @@ virtual void CopyTextureCHROMIUM(GLenum target,
|
| GLint level,
|
| GLint internalformat,
|
| GLenum dest_type) = 0;
|
| +virtual void CopyCompressedTextureCHROMIUM(GLenum target,
|
| + GLenum source_id,
|
| + GLenum dest_id,
|
| + GLenum internalformat,
|
| + GLenum dest_type) = 0;
|
| virtual void DrawArraysInstancedANGLE(GLenum mode,
|
| GLint first,
|
| GLsizei count,
|
| @@ -564,6 +569,23 @@ virtual void AsyncTexImage2DCHROMIUM(GLenum target,
|
| GLenum format,
|
| GLenum type,
|
| const void* pixels) = 0;
|
| +virtual void AsyncCompressedTexSubImage2DCHROMIUM(GLenum target,
|
| + GLint level,
|
| + GLint xoffset,
|
| + GLint yoffset,
|
| + GLsizei width,
|
| + GLsizei height,
|
| + GLenum format,
|
| + GLsizei imagesize,
|
| + const void* data) = 0;
|
| +virtual void AsyncCompressedTexImage2DCHROMIUM(GLenum target,
|
| + GLint level,
|
| + GLint internalformat,
|
| + GLsizei width,
|
| + GLsizei height,
|
| + GLint border,
|
| + GLsizei imagesize,
|
| + const void* pixels) = 0;
|
| virtual void WaitAsyncTexImage2DCHROMIUM(GLenum target) = 0;
|
| virtual void WaitAllAsyncTexImage2DCHROMIUM() = 0;
|
| virtual void DiscardFramebufferEXT(GLenum target,
|
|
|