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

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

Issue 1427543002: Modified old wait sync point functions to also accept new sync tokens. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix mock gpu video accelerator factory Created 5 years, 2 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 284f00d42e53de13bb0343a9e3403a74b6a608c1..ff2fab871a4b751e052188cad5d0a78f79eff113 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -1478,8 +1478,9 @@ void GL_APIENTRY GLES2LoseContextCHROMIUM(GLenum current, GLenum other) {
GLuint GL_APIENTRY GLES2InsertSyncPointCHROMIUM() {
return gles2::GetGLContext()->InsertSyncPointCHROMIUM();
}
-void GL_APIENTRY GLES2WaitSyncPointCHROMIUM(GLuint sync_point) {
- gles2::GetGLContext()->WaitSyncPointCHROMIUM(sync_point);
+void GL_APIENTRY GLES2WaitSyncPointCHROMIUM(GLuint sync_point,
+ const GLbyte* sync_token) {
+ gles2::GetGLContext()->WaitSyncPointCHROMIUM(sync_point, sync_token);
}
GLuint64 GL_APIENTRY GLES2InsertFenceSyncCHROMIUM() {
return gles2::GetGLContext()->InsertFenceSyncCHROMIUM();

Powered by Google App Engine
This is Rietveld 408576698