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 #ifndef NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_COMMAND_BUFFER_NACL_H | 5 #ifndef NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_COMMAND_BUFFER_NACL_H |
6 #define NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_COMMAND_BUFFER_NACL_H | 6 #define NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_COMMAND_BUFFER_NACL_H |
7 | 7 |
8 #include "gpu/command_buffer/common/command_buffer.h" | 8 #include "gpu/command_buffer/common/command_buffer.h" |
9 #include "ppapi/c/pp_graphics_3d.h" | 9 #include "ppapi/c/pp_graphics_3d.h" |
10 #include "ppapi/c/pp_resource.h" | 10 #include "ppapi/c/pp_resource.h" |
| 11 #include "ppapi/c/ppb_core.h" |
11 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h" | 12 #include "ppapi/c/trusted/ppb_graphics_3d_trusted.h" |
12 | 13 |
13 struct PPB_Core; | |
14 | |
15 // A CommandBuffer proxy implementation that uses trusted PPAPI interface to | 14 // A CommandBuffer proxy implementation that uses trusted PPAPI interface to |
16 // access a CommandBuffer. | 15 // access a CommandBuffer. |
17 | 16 |
18 class CommandBufferNacl : public gpu::CommandBuffer { | 17 class CommandBufferNacl : public gpu::CommandBuffer { |
19 public: | 18 public: |
20 // This class will addref the graphics 3d resource using the core interface. | 19 // This class will addref the graphics 3d resource using the core interface. |
21 CommandBufferNacl(PP_Resource graphics_3d, const PPB_Core* iface_core); | 20 CommandBufferNacl(PP_Resource graphics_3d, const PPB_Core* iface_core); |
22 virtual ~CommandBufferNacl(); | 21 virtual ~CommandBufferNacl(); |
23 | 22 |
24 // CommandBuffer implementation. | 23 // CommandBuffer implementation. |
(...skipping 22 matching lines...) Expand all Loading... |
47 const PPB_Core* iface_core_; | 46 const PPB_Core* iface_core_; |
48 gpu::Buffer buffer_; | 47 gpu::Buffer buffer_; |
49 State last_state_; | 48 State last_state_; |
50 | 49 |
51 static gpu::CommandBuffer::State PpapiToGpuState(PP_Graphics3DTrustedState s); | 50 static gpu::CommandBuffer::State PpapiToGpuState(PP_Graphics3DTrustedState s); |
52 static gpu::CommandBuffer::State ErrorGpuState(); | 51 static gpu::CommandBuffer::State ErrorGpuState(); |
53 static gpu::Buffer BufferFromShm(int shm_handle, uint32_t shm_size); | 52 static gpu::Buffer BufferFromShm(int shm_handle, uint32_t shm_size); |
54 }; | 53 }; |
55 | 54 |
56 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_COMMAND_BUFFER_NACL_H | 55 #endif // NATIVE_CLIENT_SRC_SHARED_PPAPI_PROXY_COMMAND_BUFFER_NACL_H |
OLD | NEW |