| Index: content/common/gpu/gpu_command_buffer_stub.h
|
| diff --git a/content/common/gpu/gpu_command_buffer_stub.h b/content/common/gpu/gpu_command_buffer_stub.h
|
| index eef49f20ec06a455a9d096f8ef548df91d66b06a..ba1a7acbfce5c9ebc5fdf3e0f08e1004cc78ebc2 100644
|
| --- a/content/common/gpu/gpu_command_buffer_stub.h
|
| +++ b/content/common/gpu/gpu_command_buffer_stub.h
|
| @@ -208,6 +208,14 @@ class GpuCommandBufferStub
|
| void OnSignalSyncPointAck(uint32 id);
|
| void OnSignalQuery(uint32 query, uint32 id);
|
|
|
| + void OnFenceSyncRelease(uint32_t release);
|
| + bool OnWaitFenceSync(gpu::CommandBufferNamespace namespace_id,
|
| + uint64_t command_buffer_id,
|
| + uint32_t release);
|
| + void OnWaitFenceSyncCompleted(gpu::CommandBufferNamespace namespace_id,
|
| + uint64_t command_buffer_id,
|
| + uint32_t release);
|
| +
|
| void OnSetClientHasMemoryAllocationChangedCallback(bool has_callback);
|
|
|
| void OnCreateImage(int32 id,
|
| @@ -241,7 +249,10 @@ class GpuCommandBufferStub
|
|
|
| bool CheckContextLost();
|
| void CheckCompleteWaits();
|
| - void PullTextureUpdates(uint32 sync_point);
|
| + void PullTextureUpdates(gpu::CommandBufferNamespace namespace_id,
|
| + uint64_t command_buffer_id,
|
| + uint32_t release);
|
| +
|
|
|
| // The lifetime of objects of this class is managed by a GpuChannel. The
|
| // GpuChannels destroy all the GpuCommandBufferStubs that they own when they
|
|
|