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

Unified Diff: gpu/command_buffer/build_gles2_cmd_buffer.py

Issue 793693003: Tile Compression (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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/gl2chromium_autogen.h ('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
diff --git a/gpu/command_buffer/build_gles2_cmd_buffer.py b/gpu/command_buffer/build_gles2_cmd_buffer.py
index 0b86db6a0f0d672be669537b12130577a9057203..d423d5937039fbf71fcadbbd450b8fb039433421 100755
--- a/gpu/command_buffer/build_gles2_cmd_buffer.py
+++ b/gpu/command_buffer/build_gles2_cmd_buffer.py
@@ -2528,6 +2528,12 @@ _FUNCTION_INFO = {
'extension': True,
'chromium': True,
},
+ 'CopyCompressedTextureCHROMIUM': {
+ 'decoder_func': 'DoCopyCompressedTextureCHROMIUM',
+ 'unit_test': False,
+ 'extension': True,
+ 'chromium': True,
+ },
'TexStorage2DEXT': {
'unit_test': False,
'extension': True,
@@ -2752,6 +2758,35 @@ _FUNCTION_INFO = {
'extension': True,
'chromium': True,
},
+ 'AsyncCompressedTexImage2DCHROMIUM': {
+ 'type': 'Manual',
+ 'data_transfer_methods': ['shm'],
+ 'client_test': False,
+ 'cmd_args': 'GLenumTextureTarget target, GLint level, '
+ 'GLintTextureInternalFormat internalformat, '
+ 'GLsizei width, GLsizei height, '
+ 'GLintTextureBorder border, '
+ 'GLsizei imagesize, '
+ 'const void* pixels, '
+ 'uint32_t async_upload_token, '
+ 'void* sync_data',
+ 'extension': True,
+ 'chromium': True,
+ },
+ 'AsyncCompressedTexSubImage2DCHROMIUM': {
+ 'type': 'Manual',
+ 'data_transfer_methods': ['shm'],
+ 'client_test': False,
+ 'cmd_args': 'GLenumTextureTarget target, GLint level, '
+ 'GLint xoffset, GLint yoffset, '
+ 'GLsizei width, GLsizei height, '
+ 'GLenumTextureFormat format, GLsizei imagesize, '
+ 'const void* data, '
+ 'uint32_t async_upload_token, '
+ 'void* sync_data',
+ 'extension': True,
+ 'chromium': True,
+ },
'WaitAsyncTexImage2DCHROMIUM': {
'type': 'Manual',
'client_test': False,
« no previous file with comments | « gpu/GLES2/gl2chromium_autogen.h ('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