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

Unified Diff: gpu/command_buffer/build_gles2_cmd_buffer.py

Issue 116863003: gpu: Reuse transfer buffers more aggresively (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Async upload token part of existing Async command; use separate shared memory to sync async upload … Created 6 years, 10 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
diff --git a/gpu/command_buffer/build_gles2_cmd_buffer.py b/gpu/command_buffer/build_gles2_cmd_buffer.py
index 4eb9c4731df57bc494657a10c7840f74082beea0..4cd1005b08339e8f7e48677fce62eb63a87c7a6a 100755
--- a/gpu/command_buffer/build_gles2_cmd_buffer.py
+++ b/gpu/command_buffer/build_gles2_cmd_buffer.py
@@ -2447,6 +2447,14 @@ _FUNCTION_INFO = {
'type': 'Manual',
'immediate': False,
'client_test': False,
+ 'cmd_args': 'GLenumTextureTarget target, GLint level, '
+ 'GLintTextureInternalFormat internalformat, '
+ 'GLsizei width, GLsizei height, '
+ 'GLintTextureBorder border, '
+ 'GLenumTextureFormat format, GLenumPixelType type, '
+ 'const void* pixels, '
+ 'uint32 async_upload_token, '
+ 'void* sync_data',
'extension': True,
'chromium': True,
},
@@ -2454,6 +2462,13 @@ _FUNCTION_INFO = {
'type': 'Manual',
'immediate': False,
'client_test': False,
+ 'cmd_args': 'GLenumTextureTarget target, GLint level, '
+ 'GLint xoffset, GLint yoffset, '
+ 'GLsizei width, GLsizei height, '
+ 'GLenumTextureFormat format, GLenumPixelType type, '
+ 'const void* data, '
+ 'uint32 async_upload_token, '
+ 'void* sync_data',
'extension': True,
'chromium': True,
},
« no previous file with comments | « no previous file | gpu/command_buffer/client/buffer_tracker.h » ('j') | gpu/command_buffer/client/buffer_tracker.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698