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

Unified Diff: gpu/command_buffer/client/gles2_c_lib_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
Index: gpu/command_buffer/client/gles2_c_lib_autogen.h
diff --git a/gpu/command_buffer/client/gles2_c_lib_autogen.h b/gpu/command_buffer/client/gles2_c_lib_autogen.h
index 989c500a03cb12e17988b460a26c5e9f36d816e4..0e43ae75f9e6885c41b11f1ce85bdb2f4a9a6571 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -1470,37 +1470,6 @@ void GL_APIENTRY GLES2TraceBeginCHROMIUM(const char* category_name,
void GL_APIENTRY GLES2TraceEndCHROMIUM() {
gles2::GetGLContext()->TraceEndCHROMIUM();
}
-void GL_APIENTRY GLES2AsyncTexSubImage2DCHROMIUM(GLenum target,
- GLint level,
- GLint xoffset,
- GLint yoffset,
- GLsizei width,
- GLsizei height,
- GLenum format,
- GLenum type,
- const void* data) {
- gles2::GetGLContext()->AsyncTexSubImage2DCHROMIUM(
- target, level, xoffset, yoffset, width, height, format, type, data);
-}
-void GL_APIENTRY GLES2AsyncTexImage2DCHROMIUM(GLenum target,
- GLint level,
- GLenum internalformat,
- GLsizei width,
- GLsizei height,
- GLint border,
- GLenum format,
- GLenum type,
- const void* pixels) {
- gles2::GetGLContext()->AsyncTexImage2DCHROMIUM(target, level, internalformat,
- width, height, border, format,
- type, pixels);
-}
-void GL_APIENTRY GLES2WaitAsyncTexImage2DCHROMIUM(GLenum target) {
- gles2::GetGLContext()->WaitAsyncTexImage2DCHROMIUM(target);
-}
-void GL_APIENTRY GLES2WaitAllAsyncTexImage2DCHROMIUM() {
- gles2::GetGLContext()->WaitAllAsyncTexImage2DCHROMIUM();
-}
void GL_APIENTRY GLES2DiscardFramebufferEXT(GLenum target,
GLsizei count,
const GLenum* attachments) {
@@ -2740,23 +2709,6 @@ extern const NameToFunc g_gles2_function_table[] = {
reinterpret_cast<GLES2FunctionPointer>(glTraceEndCHROMIUM),
},
{
- "glAsyncTexSubImage2DCHROMIUM",
- reinterpret_cast<GLES2FunctionPointer>(glAsyncTexSubImage2DCHROMIUM),
- },
- {
- "glAsyncTexImage2DCHROMIUM",
- reinterpret_cast<GLES2FunctionPointer>(glAsyncTexImage2DCHROMIUM),
- },
- {
- "glWaitAsyncTexImage2DCHROMIUM",
- reinterpret_cast<GLES2FunctionPointer>(glWaitAsyncTexImage2DCHROMIUM),
- },
- {
- "glWaitAllAsyncTexImage2DCHROMIUM",
- reinterpret_cast<GLES2FunctionPointer>(
- glWaitAllAsyncTexImage2DCHROMIUM),
- },
- {
"glDiscardFramebufferEXT",
reinterpret_cast<GLES2FunctionPointer>(glDiscardFramebufferEXT),
},
« no previous file with comments | « gpu/command_buffer/client/fenced_allocator_test.cc ('k') | gpu/command_buffer/client/gles2_cmd_helper_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698