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

Unified Diff: gpu/command_buffer/build_gles2_cmd_buffer.py

Issue 1331843005: Implemented new fence syncs which replaces the old sync points. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reverted mojo readme, changed wait() to take a pointer Created 5 years, 2 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 | « gpu/GLES2/gl2extchromium.h ('k') | gpu/command_buffer/client/client_test_helper.h » ('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 597f5259e5fca114b6af92de75f9ce7c3cd81dd5..c2cd436321bfe7d99caa72471d9b8779df53fa58 100755
--- a/gpu/command_buffer/build_gles2_cmd_buffer.py
+++ b/gpu/command_buffer/build_gles2_cmd_buffer.py
@@ -4090,6 +4090,30 @@ _FUNCTION_INFO = {
'chromium': True,
'trace_level': 1,
},
+ 'InsertFenceSyncCHROMIUM': {
+ 'type': 'Custom',
+ 'impl_func': False,
+ 'cmd_args': 'GLuint64 release_count',
+ 'extension': "CHROMIUM_sync_point",
+ 'chromium': True,
+ 'trace_level': 1,
+ },
+ 'GenSyncTokenCHROMIUM': {
+ 'type': 'Custom',
+ 'impl_func': False,
+ 'extension': "CHROMIUM_sync_point",
+ 'chromium': True,
+ },
+ 'WaitSyncTokenCHROMIUM': {
+ 'type': 'Custom',
+ 'impl_func': False,
+ 'cmd_args': 'GLuint namespace_id, '
+ 'GLuint64 command_buffer_id, '
+ 'GLuint64 release_count',
+ 'client_test': False,
+ 'extension': "CHROMIUM_sync_point",
+ 'chromium': True,
+ },
'DiscardBackbufferCHROMIUM': {
'type': 'Custom',
'impl_func': True,
« no previous file with comments | « gpu/GLES2/gl2extchromium.h ('k') | gpu/command_buffer/client/client_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698