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

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

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/command_buffer/client/context_support.h
diff --git a/gpu/command_buffer/client/context_support.h b/gpu/command_buffer/client/context_support.h
index ceba6896ce932bbdf9b505005e917c3bee6e0b00..53b33c8fee666baa1a9e594f003dd16e6a09d7ad 100644
--- a/gpu/command_buffer/client/context_support.h
+++ b/gpu/command_buffer/client/context_support.h
@@ -27,9 +27,9 @@ class ContextSupport {
virtual void SignalSyncToken(const SyncToken& sync_token,
const base::Closure& callback) = 0;
- // Returns true if the given sync token has been signalled. The sync token
- // must belong to this context. This may be called from any thread.
- virtual bool IsSyncTokenSignalled(const SyncToken& sync_token) = 0;
+ // Returns true if the given sync token has been signaled. The sync token must
+ // belong to this context. This may be called from any thread.
+ virtual bool IsSyncTokenSignaled(const SyncToken& sync_token) = 0;
// Runs |callback| when a query created via glCreateQueryEXT() has cleared
// passed the glEndQueryEXT() point.

Powered by Google App Engine
This is Rietveld 408576698