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

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

Issue 2550583002: gpu: Thread-safe command buffer state lookup. (Closed)
Patch Set: Created 4 years 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/gpu_control.h
diff --git a/gpu/command_buffer/client/gpu_control.h b/gpu/command_buffer/client/gpu_control.h
index afdb93adee484d5eeb86e6b06751cdddd0e2c17a..e0d7e071cecc870073375d3ab33c687f1660c9d8 100644
--- a/gpu/command_buffer/client/gpu_control.h
+++ b/gpu/command_buffer/client/gpu_control.h
@@ -93,6 +93,7 @@ class GPU_EXPORT GpuControl {
virtual bool IsFenceSyncRelease(uint64_t release) = 0;
virtual bool IsFenceSyncFlushed(uint64_t release) = 0;
virtual bool IsFenceSyncFlushReceived(uint64_t release) = 0;
+ virtual bool IsFenceSyncReleased(uint64_t release) = 0;
sunnyps 2016/12/02 02:52:03 Need a better name for this... This is the only t
// Runs |callback| when sync token is signalled.
virtual void SignalSyncToken(const SyncToken& sync_token,

Powered by Google App Engine
This is Rietveld 408576698