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

Unified Diff: gpu/command_buffer/client/gles2_trace_implementation_impl_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_trace_implementation_impl_autogen.h
diff --git a/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h b/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h
index f0855dc57e01c880852d66de2d981dcbd4dd6608..2f1416f0d2317fd4841c67b84bf23e5233034bd9 100644
--- a/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h
+++ b/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h
@@ -2155,9 +2155,10 @@ GLuint GLES2TraceImplementation::InsertSyncPointCHROMIUM() {
return gl_->InsertSyncPointCHROMIUM();
}
-void GLES2TraceImplementation::WaitSyncPointCHROMIUM(GLuint sync_point) {
+void GLES2TraceImplementation::WaitSyncPointCHROMIUM(GLuint sync_point,
+ const GLbyte* sync_token) {
TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::WaitSyncPointCHROMIUM");
- gl_->WaitSyncPointCHROMIUM(sync_point);
+ gl_->WaitSyncPointCHROMIUM(sync_point, sync_token);
}
GLuint64 GLES2TraceImplementation::InsertFenceSyncCHROMIUM() {

Powered by Google App Engine
This is Rietveld 408576698