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

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

Issue 11412232: gpu: Add async upload functions. (Closed) Base URL: http://git.chromium.org/chromium/src.git@ASYNC_uploads
Patch Set: Address feedback. Created 8 years, 1 month 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_interface_stub_impl_autogen.h
diff --git a/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h b/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
index 1cf75486d9005ba70cdef7cb6c1eb77e844fe49b..e7e55a3e7553af4ed6898f1da6e15007c93928f2 100644
--- a/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
+++ b/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
@@ -613,5 +613,17 @@ void GLES2InterfaceStub::TraceBeginCHROMIUM(const char* /* name */) {
}
void GLES2InterfaceStub::TraceEndCHROMIUM() {
}
+GLboolean GLES2InterfaceStub::AsyncTexSubImage2DCHROMIUM(
+ GLenum /* target */, GLint /* level */, GLint /* xoffset */,
+ GLint /* yoffset */, GLsizei /* width */, GLsizei /* height */,
+ GLenum /* format */, GLenum /* type */, const void* /* data */) {
+ return 0;
+}
+GLboolean GLES2InterfaceStub::AsyncTexImage2DCHROMIUM(
+ GLenum /* target */, GLint /* level */, GLint /* internalformat */,
+ GLsizei /* width */, GLsizei /* height */, GLint /* border */,
+ GLenum /* format */, GLenum /* type */, const void* /* pixels */) {
+ return 0;
+}
#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_

Powered by Google App Engine
This is Rietveld 408576698