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

Unified Diff: gpu/command_buffer/build_gles2_cmd_buffer.py

Issue 1186393004: gpu: Remove async texture uploads. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 4 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/blink/webgraphicscontext3d_impl.cc ('k') | gpu/command_buffer/client/buffer_tracker_unittest.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 f23f79b5e92e23236b4e944e45cc9641fddb8ae1..bc9db2ce52ae960e7e993fba4539268493a11d52 100755
--- a/gpu/command_buffer/build_gles2_cmd_buffer.py
+++ b/gpu/command_buffer/build_gles2_cmd_buffer.py
@@ -1260,7 +1260,6 @@ _NAMED_TYPE_INFO = {
'GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT',
'GL_COMMANDS_ISSUED_CHROMIUM',
'GL_LATENCY_QUERY_CHROMIUM',
- 'GL_ASYNC_PIXEL_UNPACK_COMPLETED_CHROMIUM',
'GL_ASYNC_PIXEL_PACK_COMPLETED_CHROMIUM',
'GL_COMMANDS_COMPLETED_CHROMIUM',
],
@@ -4027,51 +4026,6 @@ _FUNCTION_INFO = {
'extension': True,
'chromium': True,
},
- 'AsyncTexImage2DCHROMIUM': {
- 'type': 'Manual',
- 'data_transfer_methods': ['shm'],
- '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_t async_upload_token, '
- 'void* sync_data',
- 'extension': True,
- 'chromium': True,
- 'trace_level': 2,
- },
- 'AsyncTexSubImage2DCHROMIUM': {
- '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, GLenumPixelType type, '
- 'const void* data, '
- 'uint32_t async_upload_token, '
- 'void* sync_data',
- 'extension': True,
- 'chromium': True,
- 'trace_level': 2,
- },
- 'WaitAsyncTexImage2DCHROMIUM': {
- 'type': 'Manual',
- 'client_test': False,
- 'extension': True,
- 'chromium': True,
- 'trace_level': 1,
- },
- 'WaitAllAsyncTexImage2DCHROMIUM': {
- 'type': 'Manual',
- 'client_test': False,
- 'extension': True,
- 'chromium': True,
- 'trace_level': 1,
- },
'DiscardFramebufferEXT': {
'type': 'PUTn',
'count': 1,
« no previous file with comments | « gpu/blink/webgraphicscontext3d_impl.cc ('k') | gpu/command_buffer/client/buffer_tracker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698