Index: gpu/GLES2/gl2extchromium.h |
diff --git a/gpu/GLES2/gl2extchromium.h b/gpu/GLES2/gl2extchromium.h |
index c3b10ebdd18086748d37604a7273fed2643b9a49..584d29a267d96737a951a9d45682eb61bd6da913 100644 |
--- a/gpu/GLES2/gl2extchromium.h |
+++ b/gpu/GLES2/gl2extchromium.h |
@@ -446,9 +446,31 @@ typedef void(GL_APIENTRYP PFNGLCOPYSUBTEXTURECHROMIUMPROC)( |
#ifdef GL_GLEXT_PROTOTYPES |
GL_APICALL void GL_APIENTRY glCompressedCopyTextureCHROMIUM( |
GLenum target, GLenum source_id, GLenum dest_id); |
+ |
+GL_APICALL void GL_APIENTRY glCompressedCopySubTextureCHROMIUM( |
+ GLenum target, |
+ GLenum source_id, |
+ GLenum dest_id, |
+ GLint xoffset, |
+ GLint yoffset, |
+ GLint x, |
+ GLint y, |
+ GLsizei width, |
+ GLsizei height); |
#endif |
typedef void(GL_APIENTRYP PFNGLCOMPRESSEDCOPYTEXTURECHROMIUMPROC)( |
GLenum target, GLenum source_id, GLenum dest_id); |
+ |
+typedef void(GL_APIENTRYP PFNGLCOMPRESSEDCOPYSUBTEXTURECHROMIUMPROC)( |
+ GLenum target, |
+ GLenum source_id, |
+ GLenum dest_id, |
+ GLint xoffset, |
+ GLint yoffset, |
+ GLint x, |
+ GLint y, |
+ GLsizei width, |
+ GLsizei height); |
#endif /* GL_CHROMIUM_compressed_copy_texture */ |
/* GL_CHROMIUM_lose_context */ |