diff options
Diffstat (limited to 'gpu/command_buffer/client/gpu_control.h')
-rw-r--r-- | gpu/command_buffer/client/gpu_control.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gpu/command_buffer/client/gpu_control.h b/gpu/command_buffer/client/gpu_control.h index c8d20be..28cd67a 100644 --- a/gpu/command_buffer/client/gpu_control.h +++ b/gpu/command_buffer/client/gpu_control.h @@ -55,23 +55,6 @@ class GPU_EXPORT GpuControl { unsigned internalformat, unsigned usage) = 0; - // Inserts a sync point, returning its ID. Sync point IDs are global and can - // be used for cross-context synchronization. - virtual uint32_t InsertSyncPoint() = 0; - - // Inserts a future sync point, returning its ID. Sync point IDs are global - // and can be used for cross-context synchronization. The sync point won't be - // retired immediately. - virtual uint32_t InsertFutureSyncPoint() = 0; - - // Retires a future sync point. This will signal contexts that are waiting - // on it to start executing. - virtual void RetireSyncPoint(uint32_t sync_point) = 0; - - // Runs |callback| when a sync point is reached. - virtual void SignalSyncPoint(uint32_t sync_point, - const base::Closure& callback) = 0; - // Runs |callback| when a query created via glCreateQueryEXT() has cleared // passed the glEndQueryEXT() point. virtual void SignalQuery(uint32_t query, const base::Closure& callback) = 0; |