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

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

Issue 1331843005: Implemented new fence syncs which replaces the old sync points. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some fixes Created 5 years, 3 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_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 b4a3e58c7cecae19e18fe42168746c512b9f74e9..0aa0cd848cb68179e9acf83f281ab31410cdecd0 100644
--- a/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
+++ b/gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h
@@ -1012,6 +1012,13 @@ GLuint GLES2InterfaceStub::InsertSyncPointCHROMIUM() {
return 0;
}
void GLES2InterfaceStub::WaitSyncPointCHROMIUM(GLuint /* sync_point */) {}
+GLuint GLES2InterfaceStub::InsertFenceSyncCHROMIUM() {
+ return 0;
+}
+void GLES2InterfaceStub::GenSyncTokenCHROMIUM(GLuint /* fence_sync */,
+ GLbyte* /* sync_token */) {}
+void GLES2InterfaceStub::WaitSyncTokenCHROMIUM(const GLbyte* /* sync_token */) {
+}
void GLES2InterfaceStub::DrawBuffersEXT(GLsizei /* count */,
const GLenum* /* bufs */) {}
void GLES2InterfaceStub::DiscardBackbufferCHROMIUM() {}

Powered by Google App Engine
This is Rietveld 408576698