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

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
« no previous file with comments | « gpu/DEPS ('k') | gpu/command_buffer/client/gles2_c_lib_autogen.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
===================================================================
--- gpu/command_buffer/build_gles2_cmd_buffer.py (revision 134729)
+++ 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': 'GLbyte',
+ 'count': 64,
+ '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': 'GLbyte',
+ 'count': 64,
+ 'unit_test': False,
+ 'extension': True,
+ 'chromium': True,
+ },
'RenderbufferStorage': {
'decoder_func': 'DoRenderbufferStorage',
'gl_test_func': 'glRenderbufferStorageEXT',
« no previous file with comments | « gpu/DEPS ('k') | gpu/command_buffer/client/gles2_c_lib_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698