Roll src/third_party/WebKit ef7cfd7:80927b2 (svn 194570:194575)
[chromium-blink-merge.git] / ppapi / proxy / ppapi_command_buffer_proxy.h
blob62f77a4f34114dd56ca10dba40c898761c1a70c7
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_
6 #define PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_
8 #include "base/callback.h"
9 #include "base/containers/hash_tables.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "gpu/command_buffer/client/gpu_control.h"
12 #include "gpu/command_buffer/common/command_buffer.h"
13 #include "gpu/command_buffer/common/command_buffer_shared.h"
14 #include "ppapi/proxy/ppapi_proxy_export.h"
15 #include "ppapi/shared_impl/host_resource.h"
17 namespace IPC {
18 class Message;
21 namespace ppapi {
22 namespace proxy {
24 class PluginDispatcher;
25 class SerializedHandle;
27 class PPAPI_PROXY_EXPORT PpapiCommandBufferProxy : public gpu::CommandBuffer,
28 public gpu::GpuControl {
29 public:
30 PpapiCommandBufferProxy(const HostResource& resource,
31 PluginDispatcher* dispatcher,
32 const gpu::Capabilities& capabilities,
33 const SerializedHandle& shared_state);
34 ~PpapiCommandBufferProxy() override;
36 // gpu::CommandBuffer implementation:
37 bool Initialize() override;
38 State GetLastState() override;
39 int32 GetLastToken() override;
40 void Flush(int32 put_offset) override;
41 void OrderingBarrier(int32 put_offset) override;
42 void WaitForTokenInRange(int32 start, int32 end) override;
43 void WaitForGetOffsetInRange(int32 start, int32 end) override;
44 void SetGetBuffer(int32 transfer_buffer_id) override;
45 scoped_refptr<gpu::Buffer> CreateTransferBuffer(size_t size,
46 int32* id) override;
47 void DestroyTransferBuffer(int32 id) override;
49 // gpu::GpuControl implementation:
50 gpu::Capabilities GetCapabilities() override;
51 int32 CreateImage(ClientBuffer buffer,
52 size_t width,
53 size_t height,
54 unsigned internalformat) override;
55 void DestroyImage(int32 id) override;
56 int32 CreateGpuMemoryBufferImage(size_t width,
57 size_t height,
58 unsigned internalformat,
59 unsigned usage) override;
60 uint32 InsertSyncPoint() override;
61 uint32 InsertFutureSyncPoint() override;
62 void RetireSyncPoint(uint32 sync_point) override;
63 void SignalSyncPoint(uint32 sync_point,
64 const base::Closure& callback) override;
65 void SignalQuery(uint32 query, const base::Closure& callback) override;
66 void SetSurfaceVisible(bool visible) override;
67 uint32 CreateStreamTexture(uint32 texture_id) override;
68 void SetLock(base::Lock*) override;
70 private:
71 bool Send(IPC::Message* msg);
72 void UpdateState(const gpu::CommandBuffer::State& state, bool success);
74 // Try to read an updated copy of the state from shared memory.
75 void TryUpdateState();
77 // The shared memory area used to update state.
78 gpu::CommandBufferSharedState* shared_state() const;
80 gpu::Capabilities capabilities_;
81 State last_state_;
82 scoped_ptr<base::SharedMemory> shared_state_shm_;
84 HostResource resource_;
85 PluginDispatcher* dispatcher_;
87 base::Closure channel_error_callback_;
89 DISALLOW_COPY_AND_ASSIGN(PpapiCommandBufferProxy);
92 } // namespace proxy
93 } // namespace ppapi
95 #endif // PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_