diff options
author | dyen <dyen@chromium.org> | 2016-01-22 15:38:31 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-01-22 23:40:29 +0000 |
commit | 7246e45b7da6c14b1384658481ec49b45b5b488c (patch) | |
tree | 3690ae84ea9e9117591178597e6aa3e09fde007b /gpu/command_buffer/client/gles2_implementation.cc | |
parent | 65740e3efadf5dad31f11b6d50eb6b63ccb3f2d7 (diff) | |
download | chromium_src-7246e45b7da6c14b1384658481ec49b45b5b488c.zip chromium_src-7246e45b7da6c14b1384658481ec49b45b5b488c.tar.gz chromium_src-7246e45b7da6c14b1384658481ec49b45b5b488c.tar.bz2 |
Removed last references to old sync points.
BUG=514815, 373452
CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel
Review URL: https://codereview.chromium.org/1615253006
Cr-Commit-Position: refs/heads/master@{#371082}
Diffstat (limited to 'gpu/command_buffer/client/gles2_implementation.cc')
-rw-r--r-- | gpu/command_buffer/client/gles2_implementation.cc | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/gpu/command_buffer/client/gles2_implementation.cc b/gpu/command_buffer/client/gles2_implementation.cc index b9e3bee..6d6e1a5 100644 --- a/gpu/command_buffer/client/gles2_implementation.cc +++ b/gpu/command_buffer/client/gles2_implementation.cc @@ -313,15 +313,6 @@ void GLES2Implementation::RunIfContextNotLost(const base::Closure& callback) { callback.Run(); } -void GLES2Implementation::SignalSyncPoint(uint32_t sync_point, - const base::Closure& callback) { - gpu_control_->SignalSyncPoint( - sync_point, - base::Bind(&GLES2Implementation::RunIfContextNotLost, - weak_ptr_factory_.GetWeakPtr(), - callback)); -} - void GLES2Implementation::SignalSyncToken(const gpu::SyncToken& sync_token, const base::Closure& callback) { if (sync_token.HasData() && @@ -5547,22 +5538,6 @@ GLboolean GLES2Implementation::UnmapBufferCHROMIUM(GLuint target) { return true; } -GLuint GLES2Implementation::InsertFutureSyncPointCHROMIUM() { - GPU_CLIENT_SINGLE_THREAD_CHECK(); - GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glInsertFutureSyncPointCHROMIUM"); - DCHECK(capabilities_.future_sync_points); - return gpu_control_->InsertFutureSyncPoint(); -} - -void GLES2Implementation::RetireSyncPointCHROMIUM(GLuint sync_point) { - GPU_CLIENT_SINGLE_THREAD_CHECK(); - GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glRetireSyncPointCHROMIUM(" - << sync_point << ")"); - DCHECK(capabilities_.future_sync_points); - helper_->CommandBufferHelper::Flush(); - gpu_control_->RetireSyncPoint(sync_point); -} - uint64_t GLES2Implementation::ShareGroupTracingGUID() const { return share_group_->TracingGUID(); } |