| Index: gpu/command_buffer/service/in_process_command_buffer.cc
|
| diff --git a/gpu/command_buffer/service/in_process_command_buffer.cc b/gpu/command_buffer/service/in_process_command_buffer.cc
|
| index cd5e860207c18a966b78b617406b58f548abc948..dec0893cf5f6550127f5a4c66ab1d370c716d9b4 100644
|
| --- a/gpu/command_buffer/service/in_process_command_buffer.cc
|
| +++ b/gpu/command_buffer/service/in_process_command_buffer.cc
|
| @@ -640,16 +640,6 @@ gpu::Buffer InProcessCommandBuffer::GetTransferBuffer(int32 id) {
|
| return gpu::Buffer();
|
| }
|
|
|
| -uint32 InProcessCommandBuffer::InsertSyncPoint() {
|
| - NOTREACHED();
|
| - return 0;
|
| -}
|
| -void InProcessCommandBuffer::SignalSyncPoint(unsigned sync_point,
|
| - const base::Closure& callback) {
|
| - CheckSequencedThread();
|
| - QueueTask(WrapCallback(callback));
|
| -}
|
| -
|
| bool InProcessCommandBuffer::SupportsGpuMemoryBuffer() {
|
| return supports_gpu_memory_buffer_;
|
| }
|
| @@ -683,6 +673,17 @@ bool InProcessCommandBuffer::GenerateMailboxNames(
|
| return gpu_control_->GenerateMailboxNames(num, names);
|
| }
|
|
|
| +uint32 InProcessCommandBuffer::InsertSyncPoint() {
|
| + NOTREACHED();
|
| + return 0;
|
| +}
|
| +
|
| +void InProcessCommandBuffer::SignalSyncPoint(unsigned sync_point,
|
| + const base::Closure& callback) {
|
| + CheckSequencedThread();
|
| + QueueTask(WrapCallback(callback));
|
| +}
|
| +
|
| gpu::error::Error InProcessCommandBuffer::GetLastError() {
|
| CheckSequencedThread();
|
| return last_state_.error;
|
|
|