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

Unified Diff: gpu/gles2_conform_support/egl/context.cc

Issue 2727573003: gpu: Add sync token dependencies to flush metadata. (Closed)
Patch Set: jbauman's review Created 3 years, 9 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/gles2_conform_support/egl/context.cc
diff --git a/gpu/gles2_conform_support/egl/context.cc b/gpu/gles2_conform_support/egl/context.cc
index 6b71251858fbd2b26af45b92122645c38fbb2309..c5036f9b0cdcc5dc07bca8286ae499c89d37e9d3 100644
--- a/gpu/gles2_conform_support/egl/context.cc
+++ b/gpu/gles2_conform_support/egl/context.cc
@@ -223,7 +223,9 @@ void Context::SignalSyncToken(const gpu::SyncToken& sync_token,
NOTIMPLEMENTED();
}
-bool Context::CanWaitUnverifiedSyncToken(const gpu::SyncToken* sync_token) {
+void Context::WaitSyncToken(const gpu::SyncToken& sync_token) {}
dcheng 2017/03/14 06:53:03 Is this a NOTIMPLEMENTED kind of thing?
sunnyps 2017/03/15 00:03:08 No, GLES2Implementation might call this. I don't k
piman 2017/03/15 00:30:14 It could be named something like WaitSyncTokenHint
sunnyps 2017/03/15 00:56:11 Done.
+
+bool Context::CanWaitUnverifiedSyncToken(const gpu::SyncToken& sync_token) {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698