| Index: gpu/GLES2/gl2extchromium.h
|
| diff --git a/gpu/GLES2/gl2extchromium.h b/gpu/GLES2/gl2extchromium.h
|
| index 6a31b8f38ab7d4797fbb2dcaaf73bc7fba871c33..eab836a4132071e512bb023c60f2ee1233f04dc8 100644
|
| --- a/gpu/GLES2/gl2extchromium.h
|
| +++ b/gpu/GLES2/gl2extchromium.h
|
| @@ -397,10 +397,24 @@ typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERCHROMIUMPROC) (GLint srcX0, GLint
|
| GL_APICALL void GL_APIENTRY glCopyTextureCHROMIUM(
|
| GLenum target, GLenum source_id, GLenum dest_id, GLint level,
|
| GLint internalformat, GLenum dest_type);
|
| +
|
| +GL_APICALL void GL_APIENTRY glCopySubTextureCHROMIUM(GLenum target,
|
| + GLenum source_id,
|
| + GLenum dest_id,
|
| + GLint level,
|
| + GLint xoffset,
|
| + GLint yoffset);
|
| #endif
|
| typedef void (GL_APIENTRYP PFNGLCOPYTEXTURECHROMIUMPROC) (
|
| GLenum target, GLenum source_id, GLenum dest_id, GLint level,
|
| GLint internalformat, GLenum dest_type);
|
| +
|
| +typedef void(GL_APIENTRYP PFNGLCOPYSUBTEXTURECHROMIUMPROC)(GLenum target,
|
| + GLenum source_id,
|
| + GLenum dest_id,
|
| + GLint level,
|
| + GLint xoffset,
|
| + GLint yoffset);
|
| #endif /* GL_CHROMIUM_copy_texture */
|
|
|
| /* GL_CHROMIUM_lose_context */
|
|
|