| Index: gpu/GLES2/gl2extchromium.h
|
| diff --git a/gpu/GLES2/gl2extchromium.h b/gpu/GLES2/gl2extchromium.h
|
| index 30924332ead78a75267cf0223215225b9a1944c4..a597327597303a88fa23f33f90b33f8ee53dbaa7 100644
|
| --- a/gpu/GLES2/gl2extchromium.h
|
| +++ b/gpu/GLES2/gl2extchromium.h
|
| @@ -363,7 +363,8 @@ typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERCHROMIUMPROC) (GLint srcX0, GLint
|
|
|
| #ifdef GL_GLEXT_PROTOTYPES
|
| GL_APICALL void GL_APIENTRY
|
| -glCopyTextureCHROMIUM(GLenum source_id,
|
| +glCopyTextureCHROMIUM(GLenum target,
|
| + GLenum source_id,
|
| GLint source_level,
|
| GLenum dest_id,
|
| GLint dest_level,
|
| @@ -374,7 +375,8 @@ glCopyTextureCHROMIUM(GLenum source_id,
|
| GLboolean unpack_unmultiply_alpha);
|
|
|
| GL_APICALL void GL_APIENTRY
|
| -glCopySubTextureCHROMIUM(GLenum source_id,
|
| +glCopySubTextureCHROMIUM(GLenum target,
|
| + GLenum source_id,
|
| GLint source_level,
|
| GLenum dest_id,
|
| GLint dest_level,
|
| @@ -389,6 +391,7 @@ glCopySubTextureCHROMIUM(GLenum source_id,
|
| GLboolean unpack_unmultiply_alpha);
|
| #endif
|
| typedef void(GL_APIENTRYP PFNGLCOPYTEXTURECHROMIUMPROC)(
|
| + GLenum target,
|
| GLenum source_id,
|
| GLint source_level,
|
| GLenum dest_id,
|
| @@ -400,6 +403,7 @@ typedef void(GL_APIENTRYP PFNGLCOPYTEXTURECHROMIUMPROC)(
|
| GLboolean unpack_unmultiply_alpha);
|
|
|
| typedef void(GL_APIENTRYP PFNGLCOPYSUBTEXTURECHROMIUMPROC)(
|
| + GLenum target,
|
| GLenum source_id,
|
| GLint source_level,
|
| GLenum dest_id,
|
|
|