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

Unified Diff: gpu/command_buffer/build_gles2_cmd_buffer.py

Issue 1277543002: Add support for GL_EXT_debug_marker. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | mojo/gles2/gles2_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/build_gles2_cmd_buffer.py
diff --git a/gpu/command_buffer/build_gles2_cmd_buffer.py b/gpu/command_buffer/build_gles2_cmd_buffer.py
index 48ca59c5dac42cfbb8d285afdcbaba3d80f98716..9887d8f5080e4aa9a79b13808eb0e2db45813f13 100755
--- a/gpu/command_buffer/build_gles2_cmd_buffer.py
+++ b/gpu/command_buffer/build_gles2_cmd_buffer.py
@@ -3463,18 +3463,18 @@ _FUNCTION_INFO = {
'type': 'GLcharN',
'decoder_func': 'DoInsertEventMarkerEXT',
'expectation': False,
- 'extension': True,
+ 'extension': "EXT_debug_marker",
},
'PushGroupMarkerEXT': {
'type': 'GLcharN',
'decoder_func': 'DoPushGroupMarkerEXT',
'expectation': False,
- 'extension': True,
+ 'extension': "EXT_debug_marker",
},
'PopGroupMarkerEXT': {
'decoder_func': 'DoPopGroupMarkerEXT',
'expectation': False,
- 'extension': True,
+ 'extension': "EXT_debug_marker",
'impl_func': False,
},
@@ -10636,8 +10636,8 @@ def main(argv):
gen.WriteMojoGLCallVisitor(mojo_gles2_prefix + "_autogen.h")
mojo_extensions = ["CHROMIUM_texture_mailbox", "CHROMIUM_sync_point",
"CHROMIUM_sub_image", "CHROMIUM_miscellaneous",
- "CHROMIUM_resize", "OES_vertex_array_object",
- "occlusion_query_EXT"]
+ "CHROMIUM_resize", "EXT_debug_marker",
+ "OES_vertex_array_object", "occlusion_query_EXT"]
for extension in mojo_extensions:
gen.WriteMojoGLCallVisitorForExtension(
mojo_gles2_prefix + "_" + extension.lower() + "_autogen.h", extension)
« no previous file with comments | « no previous file | mojo/gles2/gles2_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698