summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authordmurph@chromium.org <dmurph@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-19 17:43:58 +0000
committerdmurph@chromium.org <dmurph@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-19 17:43:58 +0000
commita4a9a86802dc8da1a93603532e91b98f53605c84 (patch)
tree6f3a185887760aa05190682eddc55a0e4af2b286 /ui
parentbdcf915f370e489bb9b7934feca5711b3cc6bece (diff)
downloadchromium_src-a4a9a86802dc8da1a93603532e91b98f53605c84.zip
chromium_src-a4a9a86802dc8da1a93603532e91b98f53605c84.tar.gz
chromium_src-a4a9a86802dc8da1a93603532e91b98f53605c84.tar.bz2
Added ARB_get_program_binary extension to the bindings, now we check that for the program cache
Review URL: https://chromiumcodereview.appspot.com/10797022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147474 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui')
-rwxr-xr-xui/gl/generate_bindings.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/gl/generate_bindings.py b/ui/gl/generate_bindings.py
index 448d3a6..29fef63 100755
--- a/ui/gl/generate_bindings.py
+++ b/ui/gl/generate_bindings.py
@@ -298,7 +298,8 @@ GL_FUNCTIONS = [
{ 'return_type': 'void',
'names': ['glGetProgramBinary', 'glGetProgramBinaryOES'],
'arguments': 'GLuint program, GLsizei bufSize, GLsizei* length, '
- 'GLenum* binaryFormat, GLvoid* binary', },
+ 'GLenum* binaryFormat, GLvoid* binary',
+ 'other_extensions': ['GL_ARB_get_program_binary'] },
{ 'return_type': 'void',
'names': ['glGetProgramiv'],
'arguments': 'GLuint program, GLenum pname, GLint* params', },
@@ -430,7 +431,8 @@ GL_FUNCTIONS = [
{ 'return_type': 'void',
'names': ['glProgramBinary', 'glProgramBinaryOES'],
'arguments': 'GLuint program, GLenum binaryFormat, '
- 'const GLvoid* binary, GLsizei length', },
+ 'const GLvoid* binary, GLsizei length',
+ 'other_extensions': ['GL_ARB_get_program_binary'] },
{ 'return_type': 'void',
'names': ['glQueryCounter'],
'arguments': 'GLuint id, GLenum target', },