Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / ppapi / proxy / ppb_graphics_3d_proxy.h
blob6beed429e44a24dea893ae8e32097eaf0e3adf5f
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_PPB_GRAPHICS_3D_PROXY_H_
6 #define PPAPI_PROXY_PPB_GRAPHICS_3D_PROXY_H_
8 #include <vector>
10 #include "gpu/command_buffer/common/command_buffer.h"
11 #include "ppapi/c/pp_graphics_3d.h"
12 #include "ppapi/c/pp_instance.h"
13 #include "ppapi/proxy/interface_proxy.h"
14 #include "ppapi/proxy/ppapi_proxy_export.h"
15 #include "ppapi/proxy/proxy_completion_callback_factory.h"
16 #include "ppapi/shared_impl/ppb_graphics_3d_shared.h"
17 #include "ppapi/shared_impl/resource.h"
18 #include "ppapi/utility/completion_callback_factory.h"
20 namespace gpu {
21 struct Capabilities;
24 namespace ppapi {
26 class HostResource;
28 namespace proxy {
30 class SerializedHandle;
31 class PpapiCommandBufferProxy;
33 class PPAPI_PROXY_EXPORT Graphics3D : public PPB_Graphics3D_Shared {
34 public:
35 explicit Graphics3D(const HostResource& resource);
36 ~Graphics3D() override;
38 bool Init(gpu::gles2::GLES2Implementation* share_gles2,
39 const gpu::Capabilities& capabilities,
40 const SerializedHandle& shared_state,
41 uint64_t command_buffer_id);
43 // Graphics3DTrusted API. These are not implemented in the proxy.
44 PP_Bool SetGetBuffer(int32_t shm_id) override;
45 PP_Bool Flush(int32_t put_offset) override;
46 scoped_refptr<gpu::Buffer> CreateTransferBuffer(uint32_t size,
47 int32* id) override;
48 PP_Bool DestroyTransferBuffer(int32_t id) override;
49 gpu::CommandBuffer::State WaitForTokenInRange(int32_t start,
50 int32_t end) override;
51 gpu::CommandBuffer::State WaitForGetOffsetInRange(int32_t start,
52 int32_t end) override;
53 uint32_t InsertSyncPoint() override;
54 uint32_t InsertFutureSyncPoint() override;
55 void RetireSyncPoint(uint32_t sync_point) override;
57 private:
58 // PPB_Graphics3D_Shared overrides.
59 gpu::CommandBuffer* GetCommandBuffer() override;
60 gpu::GpuControl* GetGpuControl() override;
61 int32 DoSwapBuffers() override;
63 scoped_ptr<PpapiCommandBufferProxy> command_buffer_;
65 DISALLOW_COPY_AND_ASSIGN(Graphics3D);
68 class PPB_Graphics3D_Proxy : public InterfaceProxy {
69 public:
70 explicit PPB_Graphics3D_Proxy(Dispatcher* dispatcher);
71 ~PPB_Graphics3D_Proxy();
73 static PP_Resource CreateProxyResource(
74 PP_Instance instance,
75 PP_Resource share_context,
76 const int32_t* attrib_list);
78 // InterfaceProxy implementation.
79 bool OnMessageReceived(const IPC::Message& msg) override;
81 static const ApiID kApiID = API_ID_PPB_GRAPHICS_3D;
83 private:
84 void OnMsgCreate(PP_Instance instance,
85 HostResource share_context,
86 const std::vector<int32_t>& attribs,
87 HostResource* result,
88 gpu::Capabilities* capabilities,
89 SerializedHandle* handle,
90 uint64_t* command_buffer_id);
91 void OnMsgSetGetBuffer(const HostResource& context,
92 int32 id);
93 void OnMsgWaitForTokenInRange(const HostResource& context,
94 int32 start,
95 int32 end,
96 gpu::CommandBuffer::State* state,
97 bool* success);
98 void OnMsgWaitForGetOffsetInRange(const HostResource& context,
99 int32 start,
100 int32 end,
101 gpu::CommandBuffer::State* state,
102 bool* success);
103 void OnMsgAsyncFlush(const HostResource& context, int32 put_offset);
104 void OnMsgCreateTransferBuffer(
105 const HostResource& context,
106 uint32 size,
107 int32* id,
108 ppapi::proxy::SerializedHandle* transfer_buffer);
109 void OnMsgDestroyTransferBuffer(const HostResource& context,
110 int32 id);
111 void OnMsgSwapBuffers(const HostResource& context);
112 void OnMsgInsertSyncPoint(const HostResource& context, uint32* sync_point);
113 void OnMsgInsertFutureSyncPoint(const HostResource& context,
114 uint32* sync_point);
115 void OnMsgRetireSyncPoint(const HostResource& context, uint32 sync_point);
116 // Renderer->plugin message handlers.
117 void OnMsgSwapBuffersACK(const HostResource& context,
118 int32_t pp_error);
120 void SendSwapBuffersACKToPlugin(int32_t result,
121 const HostResource& context);
123 ProxyCompletionCallbackFactory<PPB_Graphics3D_Proxy> callback_factory_;
125 DISALLOW_COPY_AND_ASSIGN(PPB_Graphics3D_Proxy);
128 } // namespace proxy
129 } // namespace ppapi
131 #endif // PPAPI_PROXY_PPB_GRAPHICS_3D_PROXY_H_