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

Side by Side Diff: ui/gl/generate_bindings.py

Issue 643373003: Add support for all blendmodes if we have GL_KHR_blend_equation_advanced. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix feature_info_unittest Created 6 years, 1 month 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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """code generator for GL/GLES extension wrangler.""" 6 """code generator for GL/GLES extension wrangler."""
7 7
8 import optparse 8 import optparse
9 import os 9 import os
10 import collections 10 import collections
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 'arguments': 'GLenum matrixMode, const GLfloat* m' }, 861 'arguments': 'GLenum matrixMode, const GLfloat* m' },
862 { 'return_type': 'void', 862 { 'return_type': 'void',
863 'known_as': 'glMatrixLoadIdentityEXT', 863 'known_as': 'glMatrixLoadIdentityEXT',
864 'versions': [{ 'name': 'glMatrixLoadIdentityEXT', 864 'versions': [{ 'name': 'glMatrixLoadIdentityEXT',
865 'gl_versions': ['gl4'], 865 'gl_versions': ['gl4'],
866 'extensions': ['GL_EXT_direct_state_access'] }, 866 'extensions': ['GL_EXT_direct_state_access'] },
867 { 'name': 'glMatrixLoadIdentityEXT', 867 { 'name': 'glMatrixLoadIdentityEXT',
868 'gl_versions': ['es3'], 868 'gl_versions': ['es3'],
869 'extensions': ['GL_NV_path_rendering'] }], 869 'extensions': ['GL_NV_path_rendering'] }],
870 'arguments': 'GLenum matrixMode' }, 870 'arguments': 'GLenum matrixMode' },
871 { 'return_type': 'void',
872 'known_as': 'glBlendBarrierKHR',
873 'versions': [{ 'name': 'glBlendBarrierNV',
874 'extensions': ['GL_NV_blend_equation_advanced'] },
875 { 'name': 'glBlendBarrierKHR',
876 'extensions': ['GL_KHR_blend_equation_advanced'] }],
877 'arguments': 'void' },
871 ] 878 ]
872 879
873 OSMESA_FUNCTIONS = [ 880 OSMESA_FUNCTIONS = [
874 { 'return_type': 'OSMesaContext', 881 { 'return_type': 'OSMesaContext',
875 'names': ['OSMesaCreateContext'], 882 'names': ['OSMesaCreateContext'],
876 'arguments': 'GLenum format, OSMesaContext sharelist', }, 883 'arguments': 'GLenum format, OSMesaContext sharelist', },
877 { 'return_type': 'OSMesaContext', 884 { 'return_type': 'OSMesaContext',
878 'names': ['OSMesaCreateContextExt'], 885 'names': ['OSMesaCreateContextExt'],
879 'arguments': 886 'arguments':
880 'GLenum format, GLint depthBits, GLint stencilBits, GLint accumBits, ' 887 'GLenum format, GLint depthBits, GLint stencilBits, GLint accumBits, '
(...skipping 1199 matching lines...) Expand 10 before | Expand all | Expand 10 after
2080 2087
2081 source_file = open(os.path.join(directory, 'gl_bindings_autogen_mock.cc'), 2088 source_file = open(os.path.join(directory, 'gl_bindings_autogen_mock.cc'),
2082 'wb') 2089 'wb')
2083 GenerateMockBindingsSource(source_file, GL_FUNCTIONS) 2090 GenerateMockBindingsSource(source_file, GL_FUNCTIONS)
2084 source_file.close() 2091 source_file.close()
2085 return 0 2092 return 0
2086 2093
2087 2094
2088 if __name__ == '__main__': 2095 if __name__ == '__main__':
2089 sys.exit(main(sys.argv[1:])) 2096 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder_unittest_extensions_autogen.h ('k') | ui/gl/gl_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698