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_
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"
30 class SerializedHandle
;
31 class PpapiCommandBufferProxy
;
33 class PPAPI_PROXY_EXPORT Graphics3D
: public PPB_Graphics3D_Shared
{
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
,
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
;
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
{
70 explicit PPB_Graphics3D_Proxy(Dispatcher
* dispatcher
);
71 ~PPB_Graphics3D_Proxy();
73 static PP_Resource
CreateProxyResource(
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
;
84 void OnMsgCreate(PP_Instance instance
,
85 HostResource share_context
,
86 const std::vector
<int32_t>& attribs
,
88 gpu::Capabilities
* capabilities
,
89 SerializedHandle
* handle
,
90 uint64_t* command_buffer_id
);
91 void OnMsgSetGetBuffer(const HostResource
& context
,
93 void OnMsgWaitForTokenInRange(const HostResource
& context
,
96 gpu::CommandBuffer::State
* state
,
98 void OnMsgWaitForGetOffsetInRange(const HostResource
& context
,
101 gpu::CommandBuffer::State
* state
,
103 void OnMsgAsyncFlush(const HostResource
& context
, int32 put_offset
);
104 void OnMsgCreateTransferBuffer(
105 const HostResource
& context
,
108 ppapi::proxy::SerializedHandle
* transfer_buffer
);
109 void OnMsgDestroyTransferBuffer(const HostResource
& context
,
111 void OnMsgSwapBuffers(const HostResource
& context
);
112 void OnMsgInsertSyncPoint(const HostResource
& context
, uint32
* sync_point
);
113 void OnMsgInsertFutureSyncPoint(const HostResource
& context
,
115 void OnMsgRetireSyncPoint(const HostResource
& context
, uint32 sync_point
);
116 // Renderer->plugin message handlers.
117 void OnMsgSwapBuffersACK(const HostResource
& context
,
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
);
131 #endif // PPAPI_PROXY_PPB_GRAPHICS_3D_PROXY_H_