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

Unified Diff: gpu/command_buffer/build_gles2_cmd_buffer.py

Issue 2383753002: gpu: Add GpuFence framework.
Patch Set: rebase Created 4 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 side-by-side diff with in-line comments
Download patch
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 d8c5f46c14d8c5ed411efa1354612f0a950f46a1..4e2beb17c0353331d4d1f99a1875c28a99603849 100755
--- a/gpu/command_buffer/build_gles2_cmd_buffer.py
+++ b/gpu/command_buffer/build_gles2_cmd_buffer.py
@@ -2664,6 +2664,18 @@ _FUNCTION_INFO = {
'extension': "CHROMIUM_gpu_memory_buffer_image",
'trace_level': 1,
},
+ 'CreateFenceCHROMIUM': {
+ 'type': 'NoCommand',
+ 'cmd_args': 'ClientFence fence',
+ 'result': ['GLuint'],
+ 'extension': "CHROMIUM_fence",
+ 'trace_level': 1,
+ },
+ 'DestroyFenceCHROMIUM': {
+ 'type': 'NoCommand',
+ 'extension': "CHROMIUM_fence",
+ 'trace_level': 1,
+ },
'DescheduleUntilFinishedCHROMIUM': {
'type': 'Custom',
'decoder_func': 'DoDescheduleUntilFinishedCHROMIUM',

Powered by Google App Engine
This is Rietveld 408576698