OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ppapi/proxy/ppb_surface_3d_proxy.h" | 5 #include "ppapi/proxy/ppb_surface_3d_proxy.h" |
6 | 6 |
7 #include "gpu/command_buffer/client/gles2_implementation.h" | 7 #include "gpu/command_buffer/client/gles2_implementation.h" |
8 #include "ppapi/c/pp_errors.h" | 8 #include "ppapi/c/pp_errors.h" |
9 #include "ppapi/c/pp_resource.h" | 9 #include "ppapi/c/pp_resource.h" |
10 #include "ppapi/c/dev/ppb_surface_3d_dev.h" | 10 #include "ppapi/c/dev/ppb_surface_3d_dev.h" |
11 #include "ppapi/proxy/enter_proxy.h" | 11 #include "ppapi/proxy/enter_proxy.h" |
12 #include "ppapi/proxy/plugin_dispatcher.h" | 12 #include "ppapi/proxy/plugin_dispatcher.h" |
13 #include "ppapi/proxy/plugin_resource.h" | 13 #include "ppapi/proxy/plugin_resource.h" |
14 #include "ppapi/proxy/ppapi_messages.h" | 14 #include "ppapi/proxy/ppapi_messages.h" |
15 #include "ppapi/proxy/ppb_context_3d_proxy.h" | 15 #include "ppapi/proxy/ppb_context_3d_proxy.h" |
16 #include "ppapi/thunk/enter.h" | 16 #include "ppapi/thunk/enter.h" |
17 #include "ppapi/thunk/resource_creation_api.h" | 17 #include "ppapi/thunk/resource_creation_api.h" |
18 #include "ppapi/thunk/thunk.h" | 18 #include "ppapi/thunk/thunk.h" |
19 | 19 |
| 20 using ppapi::HostResource; |
20 using ppapi::thunk::EnterFunctionNoLock; | 21 using ppapi::thunk::EnterFunctionNoLock; |
21 using ppapi::thunk::PPB_Surface3D_API; | 22 using ppapi::thunk::PPB_Surface3D_API; |
22 using ppapi::thunk::ResourceCreationAPI; | 23 using ppapi::thunk::ResourceCreationAPI; |
23 | 24 |
24 namespace pp { | 25 namespace pp { |
25 namespace proxy { | 26 namespace proxy { |
26 | 27 |
27 namespace { | 28 namespace { |
28 | 29 |
29 InterfaceProxy* CreateSurface3DProxy(Dispatcher* dispatcher, | 30 InterfaceProxy* CreateSurface3DProxy(Dispatcher* dispatcher, |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 | 194 |
194 void PPB_Surface3D_Proxy::SendSwapBuffersACKToPlugin( | 195 void PPB_Surface3D_Proxy::SendSwapBuffersACKToPlugin( |
195 int32_t result, | 196 int32_t result, |
196 const HostResource& surface_3d) { | 197 const HostResource& surface_3d) { |
197 dispatcher()->Send(new PpapiMsg_PPBSurface3D_SwapBuffersACK( | 198 dispatcher()->Send(new PpapiMsg_PPBSurface3D_SwapBuffersACK( |
198 INTERFACE_ID_PPB_SURFACE_3D, surface_3d, result)); | 199 INTERFACE_ID_PPB_SURFACE_3D, surface_3d, result)); |
199 } | 200 } |
200 | 201 |
201 } // namespace proxy | 202 } // namespace proxy |
202 } // namespace pp | 203 } // namespace pp |
OLD | NEW |