HomeSort by relevance Sort by last modified time
    Searched refs:CommandBuffer (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/gpu/command_buffer/client/
gles2_cmd_helper.cc 10 GLES2CmdHelper::GLES2CmdHelper(CommandBuffer* command_buffer)
client_test_helper.cc 25 CommandBuffer::State MockCommandBufferBase::GetState() {
29 CommandBuffer::State MockCommandBufferBase::GetLastState() {
41 CommandBuffer::State MockCommandBufferBase::FlushSync(
mapped_memory.cc 27 CommandBuffer* cmd_buf = helper_->command_buffer();
53 CommandBuffer* cmd_buf = helper_->command_buffer();
93 CommandBuffer* cmd_buf = helper_->command_buffer();
cmd_buffer_helper.cc 18 CommandBufferHelper::CommandBufferHelper(CommandBuffer* command_buffer)
67 CommandBuffer::State state = command_buffer_->GetState();
109 CommandBuffer::State state = command_buffer_->FlushSync(put_, get_offset());
cmd_buffer_helper.h 38 explicit CommandBufferHelper(CommandBuffer* command_buffer);
214 CommandBuffer* command_buffer() const {
248 CommandBuffer* command_buffer_;
client_test_helper.h 21 class MockCommandBufferBase : public CommandBuffer {
  /external/chromium_org/content/renderer/pepper/
ppb_graphics_3d_impl.h 26 virtual gpu::CommandBuffer::State GetState() OVERRIDE;
33 virtual gpu::CommandBuffer::State FlushSync(int32_t put_offset) OVERRIDE;
34 virtual gpu::CommandBuffer::State FlushSyncFast(
57 virtual gpu::CommandBuffer* GetCommandBuffer() OVERRIDE;
pepper_platform_context_3d.h 19 class CommandBuffer;
44 gpu::CommandBuffer* GetCommandBuffer();
ppb_graphics_3d_impl.cc 124 gpu::CommandBuffer::State PPB_Graphics3D_Impl::GetState() {
151 gpu::CommandBuffer::State PPB_Graphics3D_Impl::FlushSync(int32_t put_offset) {
152 gpu::CommandBuffer::State state = GetCommandBuffer()->GetState();
156 gpu::CommandBuffer::State PPB_Graphics3D_Impl::FlushSyncFast(
188 gpu::CommandBuffer* PPB_Graphics3D_Impl::GetCommandBuffer() {
224 gpu::CommandBuffer* command_buffer = GetCommandBuffer();
  /external/chromium_org/gpu/command_buffer/common/
cmd_buffer_common.cc 38 error::Error CommandBuffer::GetLastError() {
command_buffer.h 18 // Common interface for CommandBuffer implementations.
19 class GPU_EXPORT CommandBuffer {
67 CommandBuffer() {
70 virtual ~CommandBuffer() {
145 DISALLOW_COPY_AND_ASSIGN(CommandBuffer);
command_buffer_shared_test.cc 27 CommandBuffer::State state;
43 CommandBuffer::State state;
69 CommandBuffer::State last_state;
71 CommandBuffer::State state = last_state;
command_buffer_mock.h 19 class MockCommandBuffer : public CommandBuffer {
command_buffer_shared.h 59 typedef SharedState<CommandBuffer::State> CommandBufferSharedState;
  /external/chromium_org/gpu/command_buffer/service/
gpu_scheduler_mock.h 15 explicit MockGpuScheduler(CommandBuffer* command_buffer)
gpu_scheduler_unittest.cc 45 CommandBuffer::State default_state;
83 CommandBuffer::State state;
96 CommandBuffer::State state;
119 CommandBuffer::State state;
143 CommandBuffer::State state;
165 CommandBuffer::State state;
186 CommandBuffer::State state;
gpu_scheduler.h 55 GpuScheduler(CommandBuffer* command_buffer,
114 // The GpuScheduler holds a weak reference to the CommandBuffer. The
115 // CommandBuffer owns the GpuScheduler and holds a strong reference to it
117 CommandBuffer* command_buffer_;
  /external/chromium_org/gpu/ipc/
command_buffer_proxy.h 17 class GPU_EXPORT CommandBufferProxy : public gpu::CommandBuffer {
gpu_command_buffer_traits.h 19 struct GPU_EXPORT ParamTraits<gpu::CommandBuffer::State> {
20 typedef gpu::CommandBuffer::State param_type;
gpu_command_buffer_traits.cc 10 void ParamTraits<gpu::CommandBuffer::State> ::Write(Message* m,
20 bool ParamTraits<gpu::CommandBuffer::State> ::Read(const Message* m,
37 void ParamTraits<gpu::CommandBuffer::State> ::Log(const param_type& p,
39 l->append("<CommandBuffer::State>");
  /external/chromium_org/ppapi/proxy/
ppb_graphics_3d_proxy.h 37 virtual gpu::CommandBuffer::State GetState() OVERRIDE;
39 virtual gpu::CommandBuffer::State FlushSync(int32_t put_offset) OVERRIDE;
45 virtual gpu::CommandBuffer::State FlushSyncFast(
54 virtual gpu::CommandBuffer* GetCommandBuffer() OVERRIDE;
60 scoped_ptr<gpu::CommandBuffer> command_buffer_;
89 gpu::CommandBuffer::State* state,
94 gpu::CommandBuffer::State* state,
ppb_graphics_3d_proxy.cc 48 gpu::CommandBuffer::State GetErrorState() {
49 gpu::CommandBuffer::State error_state;
56 // This class just wraps a CommandBuffer and optionally locks around every
70 class Graphics3D::LockingCommandBuffer : public gpu::CommandBuffer {
72 explicit LockingCommandBuffer(gpu::CommandBuffer* gpu_command_buffer)
99 // gpu::CommandBuffer implementation:
172 gpu::CommandBuffer* gpu_command_buffer_;
205 gpu::CommandBuffer::State Graphics3D::GetState() {
213 gpu::CommandBuffer::State Graphics3D::FlushSync(int32_t put_offset) {
231 gpu::CommandBuffer::State Graphics3D::FlushSyncFast(int32_t put_offset
    [all...]
ppapi_command_buffer_proxy.cc 62 gpu::CommandBuffer::State PpapiCommandBufferProxy::GetState() {
65 gpu::CommandBuffer::State state;
76 gpu::CommandBuffer::State PpapiCommandBufferProxy::GetLastState() {
102 gpu::CommandBuffer::State PpapiCommandBufferProxy::FlushSync(int32 put_offset,
107 gpu::CommandBuffer::State state;
244 const gpu::CommandBuffer::State& state,
  /external/chromium_org/ppapi/thunk/
ppb_graphics_3d_api.h 34 virtual gpu::CommandBuffer::State GetState() = 0;
41 virtual gpu::CommandBuffer::State FlushSync(int32_t put_offset) = 0;
42 virtual gpu::CommandBuffer::State FlushSyncFast(int32_t put_offset,
  /external/chromium_org/ppapi/shared_impl/
ppb_graphics_3d_shared.h 17 class CommandBuffer;
62 // the proxy lock. This is used when we need to use the CommandBuffer
64 // CommandBuffer in the plugin side of the proxy will otherwise try to acquire
87 virtual gpu::CommandBuffer* GetCommandBuffer() = 0;

Completed in 365 milliseconds

1 2