| 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 766ce560e6645bac1b683dfafa960d6542342730..6831cd6f32e5087a681424398fd90768f921773c 100644
|
| --- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| @@ -938,6 +938,14 @@ void GLES2CopyTextureCHROMIUM(GLenum target,
|
| gles2::GetGLContext()->CopyTextureCHROMIUM(target, source_id, dest_id, level,
|
| internalformat, dest_type);
|
| }
|
| +void GLES2CopyCompressedTextureCHROMIUM(GLenum target,
|
| + GLenum source_id,
|
| + GLenum dest_id,
|
| + GLenum internalformat,
|
| + GLenum dest_type) {
|
| + gles2::GetGLContext()->CopyCompressedTextureCHROMIUM(
|
| + target, source_id, dest_id, internalformat, dest_type);
|
| +}
|
| void GLES2DrawArraysInstancedANGLE(GLenum mode,
|
| GLint first,
|
| GLsizei count,
|
| @@ -1042,6 +1050,29 @@ void GLES2AsyncTexImage2DCHROMIUM(GLenum target,
|
| width, height, border, format,
|
| type, pixels);
|
| }
|
| +void GLES2AsyncCompressedTexSubImage2DCHROMIUM(GLenum target,
|
| + GLint level,
|
| + GLint xoffset,
|
| + GLint yoffset,
|
| + GLsizei width,
|
| + GLsizei height,
|
| + GLenum format,
|
| + GLsizei imagesize,
|
| + const void* data) {
|
| + gles2::GetGLContext()->AsyncCompressedTexSubImage2DCHROMIUM(
|
| + target, level, xoffset, yoffset, width, height, format, imagesize, data);
|
| +}
|
| +void GLES2AsyncCompressedTexImage2DCHROMIUM(GLenum target,
|
| + GLint level,
|
| + GLint internalformat,
|
| + GLsizei width,
|
| + GLsizei height,
|
| + GLint border,
|
| + GLsizei imagesize,
|
| + const void* pixels) {
|
| + gles2::GetGLContext()->AsyncCompressedTexImage2DCHROMIUM(
|
| + target, level, internalformat, width, height, border, imagesize, pixels);
|
| +}
|
| void GLES2WaitAsyncTexImage2DCHROMIUM(GLenum target) {
|
| gles2::GetGLContext()->WaitAsyncTexImage2DCHROMIUM(target);
|
| }
|
| @@ -1950,6 +1981,10 @@ extern const NameToFunc g_gles2_function_table[] = {
|
| reinterpret_cast<GLES2FunctionPointer>(glCopyTextureCHROMIUM),
|
| },
|
| {
|
| + "glCopyCompressedTextureCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(glCopyCompressedTextureCHROMIUM),
|
| + },
|
| + {
|
| "glDrawArraysInstancedANGLE",
|
| reinterpret_cast<GLES2FunctionPointer>(glDrawArraysInstancedANGLE),
|
| },
|
| @@ -2038,6 +2073,16 @@ extern const NameToFunc g_gles2_function_table[] = {
|
| reinterpret_cast<GLES2FunctionPointer>(glAsyncTexImage2DCHROMIUM),
|
| },
|
| {
|
| + "glAsyncCompressedTexSubImage2DCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(
|
| + glAsyncCompressedTexSubImage2DCHROMIUM),
|
| + },
|
| + {
|
| + "glAsyncCompressedTexImage2DCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(
|
| + glAsyncCompressedTexImage2DCHROMIUM),
|
| + },
|
| + {
|
| "glWaitAsyncTexImage2DCHROMIUM",
|
| reinterpret_cast<GLES2FunctionPointer>(glWaitAsyncTexImage2DCHROMIUM),
|
| },
|
|
|