Chromium Code Reviews| Index: gpu/GLES2/gl2extchromium.h |
| diff --git a/gpu/GLES2/gl2extchromium.h b/gpu/GLES2/gl2extchromium.h |
| index 6ef50e2db254e12c36eb7b45492d747fc938456a..cb197ea0d08c952b3d6d7256af87c56c8a974067 100644 |
| --- a/gpu/GLES2/gl2extchromium.h |
| +++ b/gpu/GLES2/gl2extchromium.h |
| @@ -362,27 +362,31 @@ 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, |
|
Zhenyao Mo
2017/01/05 21:30:14
You also need to update here.
qiankun
2017/01/09 08:16:27
Done.
|