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

Unified Diff: gpu/command_buffer/build_gles2_cmd_buffer.py

Issue 2447423002: Handle CompressedTex{Sub}Image{2|3}D interaction with PBO. (Closed)
Patch Set: rebase Created 4 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 | « no previous file | gpu/command_buffer/client/gles2_implementation.cc » ('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 35dfcf3e24402948c053b04b08d2261ce934a74d..2944605850a137bbfd4d9c5fd53b6bd20eb87184 100755
--- a/gpu/command_buffer/build_gles2_cmd_buffer.py
+++ b/gpu/command_buffer/build_gles2_cmd_buffer.py
@@ -2607,9 +2607,8 @@ _FUNCTION_INFO = {
'trace_level': 1,
},
'CompressedTexSubImage2D': {
- 'type': 'Data',
+ 'type': 'Custom',
'data_transfer_methods': ['bucket', 'shm'],
- 'decoder_func': 'DoCompressedTexSubImage2D',
'trace_level': 1,
},
'CopyTexImage2D': {
@@ -2624,16 +2623,14 @@ _FUNCTION_INFO = {
'trace_level': 1,
},
'CompressedTexImage3D': {
- 'type': 'Data',
+ 'type': 'Custom',
'data_transfer_methods': ['bucket', 'shm'],
- 'decoder_func': 'DoCompressedTexImage3D',
'es3': True,
'trace_level': 1,
},
'CompressedTexSubImage3D': {
- 'type': 'Data',
+ 'type': 'Custom',
'data_transfer_methods': ['bucket', 'shm'],
- 'decoder_func': 'DoCompressedTexSubImage3D',
'es3': True,
'trace_level': 1,
},
« no previous file with comments | « no previous file | gpu/command_buffer/client/gles2_implementation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698