| Index: gpu/command_buffer/client/gles2_implementation.cc
|
| diff --git a/gpu/command_buffer/client/gles2_implementation.cc b/gpu/command_buffer/client/gles2_implementation.cc
|
| index b9e3bee1eb42f4eaedd362d94e37c1581c5a5fa6..6d6e1a54602698e36890b72aa5f043cda7cea0ae 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();
|
| }
|
|
|