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

Unified Diff: gpu/command_buffer/build_gles2_cmd_buffer.py

Issue 10106015: Allow textures to be moved from one GL context group to another. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 8 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
Index: gpu/command_buffer/build_gles2_cmd_buffer.py
===================================================================
--- gpu/command_buffer/build_gles2_cmd_buffer.py (revision 133771)
+++ gpu/command_buffer/build_gles2_cmd_buffer.py (working copy)
@@ -862,6 +862,15 @@
'gl_test_func': 'glClearDepth',
},
'ColorMask': {'decoder_func': 'DoColorMask', 'expectation': False},
+ 'ConsumeTextureCHROMIUM': {
+ 'decoder_func': 'DoConsumeTextureCHROMIUM',
+ 'type': 'PUT',
+ 'data_type': 'char',
Ken Russell (switch to Gerrit) 2012/04/26 01:10:53 Can this use GLchar? Or could there be a typedef G
+ 'count': 32,
+ 'unit_test': False,
+ 'extension': True,
+ 'chromium': True,
+ },
'ClearStencil': {'decoder_func': 'DoClearStencil'},
'EnableFeatureCHROMIUM': {
'type': 'Custom',
@@ -988,6 +997,15 @@
'resource_type': 'Buffer',
'resource_types': 'Buffers',
},
+ 'GenMailboxCHROMIUM': {
+ 'type': 'Manual',
+ 'cmd_args': 'GLuint bucket_id',
+ 'result': ['SizedResult<GLint>'],
+ 'client_test': False,
+ 'unit_test': False,
+ 'extension': True,
+ 'chromium': True,
+ },
'GenFramebuffers': {
'type': 'GENn',
'gl_test_func': 'glGenFramebuffersEXT',
@@ -1278,6 +1296,15 @@
'extension': True,
'chromium': True,
},
+ 'ProduceTextureCHROMIUM': {
+ 'decoder_func': 'DoProduceTextureCHROMIUM',
+ 'type': 'PUT',
+ 'data_type': 'char',
+ 'count': 32,
+ 'unit_test': False,
+ 'extension': True,
+ 'chromium': True,
+ },
'RenderbufferStorage': {
'decoder_func': 'DoRenderbufferStorage',
'gl_test_func': 'glRenderbufferStorageEXT',

Powered by Google App Engine
This is Rietveld 408576698