Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Side by Side Diff: third_party/khronos/GLES2/gl2ext.h

Issue 10581029: Make GL_CHROMIUM_consistent_uniform_locations slighty more robust (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #ifndef __gl2ext_h_ 1 #ifndef __gl2ext_h_
2 #define __gl2ext_h_ 2 #define __gl2ext_h_
3 3
4 /* $Revision: 16619 $ on $Date:: 2012-01-18 10:00:14 -0800 #$ */ 4 /* $Revision: 16619 $ on $Date:: 2012-01-18 10:00:14 -0800 #$ */
5 5
6 #ifdef __cplusplus 6 #ifdef __cplusplus
7 extern "C" { 7 extern "C" {
8 #endif 8 #endif
9 9
10 /* 10 /*
(...skipping 2000 matching lines...) Expand 10 before | Expand all | Expand 10 after
2011 2011
2012 struct GLUniformDefinitionCHROMIUM { 2012 struct GLUniformDefinitionCHROMIUM {
2013 GLenum type; 2013 GLenum type;
2014 GLsizei size; 2014 GLsizei size;
2015 const GLchar* name; 2015 const GLchar* name;
2016 }; 2016 };
2017 2017
2018 #ifdef GL_GLEXT_PROTOTYPES 2018 #ifdef GL_GLEXT_PROTOTYPES
2019 #define glGetUniformLocationsCHROMIUM GLES2_GET_FUN(GetUniformLocationsCHROMIUM) 2019 #define glGetUniformLocationsCHROMIUM GLES2_GET_FUN(GetUniformLocationsCHROMIUM)
2020 #if !defined(GLES2_USE_CPP_BINDINGS) 2020 #if !defined(GLES2_USE_CPP_BINDINGS)
2021 GL_APICALL void GL_APIENTRY glGetUniformLocationsCHROMIUM (const GLUniformDefini tionCHROMIUM* uniforms, GLsizei count, GLsizei max_locations, GLint* locations); 2021 GL_APICALL void GL_APIENTRY glGetUniformLocationsCHROMIUM (GLuint program, const GLUniformDefinitionCHROMIUM* uniforms, GLsizei count, GLsizei max_locations, GL int* locations);
2022 #endif 2022 #endif
2023 #else 2023 #else
2024 typedef void (GL_APIENTRYP PFNGLGETUNIFORMLOCATIONSCHROMIUM) (const GLUniformDef initionCHROMIUM* uniforms, GLsizei count, GLsizei max_locations, GLint* location s); 2024 typedef void (GL_APIENTRYP PFNGLGETUNIFORMLOCATIONSCHROMIUM) (GLuint program, co nst GLUniformDefinitionCHROMIUM* uniforms, GLsizei count, GLsizei max_locations, GLint* locations);
2025 #endif 2025 #endif
2026 #endif 2026 #endif
2027 2027
2028 #ifdef __cplusplus 2028 #ifdef __cplusplus
2029 } 2029 }
2030 #endif 2030 #endif
2031 2031
2032 #endif /* __gl2ext_h_ */ 2032 #endif /* __gl2ext_h_ */
OLDNEW
« no previous file with comments | « gpu/command_buffer/tests/gl_consistent_uniform_locations_unittest.cc ('k') | third_party/khronos/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698