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

Unified Diff: gpu/command_buffer/client/gles2_cmd_helper_autogen.h

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/command_buffer/client/gles2_c_lib_autogen.h ('k') | gpu/command_buffer/client/gles2_implementation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/gles2_cmd_helper_autogen.h
diff --git a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
index 249e8a465ace6faa60e195f4553cfa530dc6487c..d31d0d85d8b0dbffe9bdc7a66b64a8190615edc1 100644
--- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
+++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
@@ -2728,65 +2728,6 @@ void TraceEndCHROMIUM() {
}
}
-void AsyncTexSubImage2DCHROMIUM(GLenum target,
- GLint level,
- GLint xoffset,
- GLint yoffset,
- GLsizei width,
- GLsizei height,
- GLenum format,
- GLenum type,
- uint32_t data_shm_id,
- uint32_t data_shm_offset,
- uint32_t async_upload_token,
- uint32_t sync_data_shm_id,
- uint32_t sync_data_shm_offset) {
- gles2::cmds::AsyncTexSubImage2DCHROMIUM* c =
- GetCmdSpace<gles2::cmds::AsyncTexSubImage2DCHROMIUM>();
- if (c) {
- c->Init(target, level, xoffset, yoffset, width, height, format, type,
- data_shm_id, data_shm_offset, async_upload_token, sync_data_shm_id,
- sync_data_shm_offset);
- }
-}
-
-void AsyncTexImage2DCHROMIUM(GLenum target,
- GLint level,
- GLint internalformat,
- GLsizei width,
- GLsizei height,
- GLenum format,
- GLenum type,
- uint32_t pixels_shm_id,
- uint32_t pixels_shm_offset,
- uint32_t async_upload_token,
- uint32_t sync_data_shm_id,
- uint32_t sync_data_shm_offset) {
- gles2::cmds::AsyncTexImage2DCHROMIUM* c =
- GetCmdSpace<gles2::cmds::AsyncTexImage2DCHROMIUM>();
- if (c) {
- c->Init(target, level, internalformat, width, height, format, type,
- pixels_shm_id, pixels_shm_offset, async_upload_token,
- sync_data_shm_id, sync_data_shm_offset);
- }
-}
-
-void WaitAsyncTexImage2DCHROMIUM(GLenum target) {
- gles2::cmds::WaitAsyncTexImage2DCHROMIUM* c =
- GetCmdSpace<gles2::cmds::WaitAsyncTexImage2DCHROMIUM>();
- if (c) {
- c->Init(target);
- }
-}
-
-void WaitAllAsyncTexImage2DCHROMIUM() {
- gles2::cmds::WaitAllAsyncTexImage2DCHROMIUM* c =
- GetCmdSpace<gles2::cmds::WaitAllAsyncTexImage2DCHROMIUM>();
- if (c) {
- c->Init();
- }
-}
-
void DiscardFramebufferEXTImmediate(GLenum target,
GLsizei count,
const GLenum* attachments) {
« no previous file with comments | « gpu/command_buffer/client/gles2_c_lib_autogen.h ('k') | gpu/command_buffer/client/gles2_implementation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698