| Index: gpu/GLES2/gl2extchromium.h
|
| diff --git a/gpu/GLES2/gl2extchromium.h b/gpu/GLES2/gl2extchromium.h
|
| index ec85bf2d4b0a755febc5df7f9e3fcf91e63f0fa8..f1771106778bb4f8cdbac7fe469ef0ec52641665 100644
|
| --- a/gpu/GLES2/gl2extchromium.h
|
| +++ b/gpu/GLES2/gl2extchromium.h
|
| @@ -109,14 +109,15 @@ typedef GLboolean (GL_APIENTRY PFNGLUNMAPBUFFERCHROMIUM) (GLuint target);
|
| typedef struct _ClientBuffer* ClientBuffer;
|
|
|
| #ifdef GL_GLEXT_PROTOTYPES
|
| -GL_APICALL GLuint GL_APIENTRY glCreateImageCHROMIUM(ClientBuffer buffer,
|
| - GLsizei width,
|
| - GLsizei height,
|
| - GLenum internalformat);
|
| +GL_APICALL GLuint GL_APIENTRY glCreateImageCHROMIUM(
|
| + ClientBuffer* buffers,
|
| + GLsizei width,
|
| + GLsizei height,
|
| + GLenum internalformat);
|
| GL_APICALL void GL_APIENTRY glDestroyImageCHROMIUM(GLuint image_id);
|
| #endif
|
| typedef GLuint(GL_APIENTRYP PFNGLCREATEIMAGECHROMIUMPROC)(
|
| - ClientBuffer buffer,
|
| + ClientBuffer* buffers,
|
| GLsizei width,
|
| GLsizei height,
|
| GLenum internalformat);
|
|
|