| Index: gpu/GLES2/gl2extchromium.h
|
| diff --git a/gpu/GLES2/gl2extchromium.h b/gpu/GLES2/gl2extchromium.h
|
| index 6ef50e2db254e12c36eb7b45492d747fc938456a..30924332ead78a75267cf0223215225b9a1944c4 100644
|
| --- a/gpu/GLES2/gl2extchromium.h
|
| +++ b/gpu/GLES2/gl2extchromium.h
|
| @@ -362,31 +362,37 @@ typedef void (GL_APIENTRYP PFNGLBLITFRAMEBUFFERCHROMIUMPROC) (GLint srcX0, GLint
|
| #endif
|
|
|
| #ifdef GL_GLEXT_PROTOTYPES
|
| -GL_APICALL void GL_APIENTRY glCopyTextureCHROMIUM(
|
| - GLenum source_id,
|
| - GLenum dest_id,
|
| - GLint internalformat,
|
| - GLenum dest_type,
|
| - GLboolean unpack_flip_y,
|
| - GLboolean unpack_premultiply_alpha,
|
| - GLboolean unpack_unmultiply_alpha);
|
| +GL_APICALL void GL_APIENTRY
|
| +glCopyTextureCHROMIUM(GLenum source_id,
|
| + GLint source_level,
|
| + GLenum dest_id,
|
| + GLint dest_level,
|
| + GLint internalformat,
|
| + GLenum dest_type,
|
| + GLboolean unpack_flip_y,
|
| + GLboolean unpack_premultiply_alpha,
|
| + GLboolean unpack_unmultiply_alpha);
|
|
|
| -GL_APICALL void GL_APIENTRY glCopySubTextureCHROMIUM(
|
| - GLenum source_id,
|
| - GLenum dest_id,
|
| - GLint xoffset,
|
| - GLint yoffset,
|
| - GLint x,
|
| - GLint y,
|
| - GLsizei width,
|
| - GLsizei height,
|
| - GLboolean unpack_flip_y,
|
| - GLboolean unpack_premultiply_alpha,
|
| - GLboolean unpack_unmultiply_alpha);
|
| +GL_APICALL void GL_APIENTRY
|
| +glCopySubTextureCHROMIUM(GLenum source_id,
|
| + GLint source_level,
|
| + GLenum dest_id,
|
| + GLint dest_level,
|
| + GLint xoffset,
|
| + GLint yoffset,
|
| + GLint x,
|
| + GLint y,
|
| + GLsizei width,
|
| + GLsizei height,
|
| + GLboolean unpack_flip_y,
|
| + GLboolean unpack_premultiply_alpha,
|
| + GLboolean unpack_unmultiply_alpha);
|
| #endif
|
| typedef void(GL_APIENTRYP PFNGLCOPYTEXTURECHROMIUMPROC)(
|
| GLenum source_id,
|
| + GLint source_level,
|
| GLenum dest_id,
|
| + GLint dest_level,
|
| GLint internalformat,
|
| GLenum dest_type,
|
| GLboolean unpack_flip_y,
|
| @@ -395,7 +401,9 @@ typedef void(GL_APIENTRYP PFNGLCOPYTEXTURECHROMIUMPROC)(
|
|
|
| typedef void(GL_APIENTRYP PFNGLCOPYSUBTEXTURECHROMIUMPROC)(
|
| GLenum source_id,
|
| + GLint source_level,
|
| GLenum dest_id,
|
| + GLint dest_level,
|
| GLint xoffset,
|
| GLint yoffset,
|
| GLint x,
|
|
|