Searched defs:command_buffer (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/gpu/command_buffer/service/
H A Dgpu_scheduler_mock.h8 #include "gpu/command_buffer/service/gpu_scheduler.h"
15 explicit MockGpuScheduler(CommandBuffer* command_buffer) argument
16 : GpuScheduler(command_buffer) {
H A Dgpu_scheduler.cc5 #include "gpu/command_buffer/service/gpu_scheduler.h"
31 GpuScheduler::GpuScheduler(CommandBufferServiceBase* command_buffer, argument
34 : command_buffer_(command_buffer),
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_cmd_helper.cc5 #include "gpu/command_buffer/client/gles2_cmd_helper.h"
10 GLES2CmdHelper::GLES2CmdHelper(CommandBuffer* command_buffer) argument
11 : CommandBufferHelper(command_buffer) {
H A Dcmd_buffer_helper.cc7 #include "gpu/command_buffer/client/cmd_buffer_helper.h"
11 #include "gpu/command_buffer/common/command_buffer.h"
12 #include "gpu/command_buffer/common/trace_event.h"
16 CommandBufferHelper::CommandBufferHelper(CommandBuffer* command_buffer) argument
17 : command_buffer_(command_buffer),
42 context_lost_ = error::IsError(command_buffer()->GetLastError());
H A Dtransfer_buffer_unittest.cc7 #include "gpu/command_buffer/client/transfer_buffer.h"
10 #include "gpu/command_buffer/client/client_test_helper.h"
11 #include "gpu/command_buffer/client/cmd_buffer_helper.h"
12 #include "gpu/command_buffer/common/command_buffer.h"
52 MockClientCommandBufferMockFlush* command_buffer() const { function in class:gpu::TransferBufferTest
66 helper_.reset(new CommandBufferHelper(command_buffer()));
69 transfer_buffer_id_ = command_buffer()->GetNextFreeTransferBufferId();
76 EXPECT_CALL(*command_buffer(), DestroyTransferBuffer(_))
81 EXPECT_CALL(*command_buffer(), DestroyTransferBuffe
254 MockClientCommandBufferCanFail* command_buffer() const { function in class:gpu::TransferBufferExpandContractTest
[all...]
H A Dcmd_buffer_helper.h14 #include "gpu/command_buffer/common/cmd_buffer_common.h"
15 #include "gpu/command_buffer/common/command_buffer.h"
16 #include "gpu/command_buffer/common/constants.h"
48 explicit CommandBufferHelper(CommandBuffer* command_buffer);
269 CommandBuffer* command_buffer() const { function in class:gpu::CommandBufferHelper
H A Dgles2_implementation_unittest.cc7 #include "gpu/command_buffer/client/gles2_implementation.h"
14 #include "gpu/command_buffer/client/client_test_helper.h"
15 #include "gpu/command_buffer/client/program_info_manager.h"
16 #include "gpu/command_buffer/client/transfer_buffer.h"
17 #include "gpu/command_buffer/common/command_buffer.h"
93 CommandBuffer* command_buffer,
97 : command_buffer_(command_buffer),
409 helper_.reset(new GLES2CmdHelper(command_buffer()));
470 command_buffer()
92 MockTransferBuffer( CommandBuffer* command_buffer, unsigned int size, unsigned int result_size, unsigned int alignment) argument
487 MockClientCommandBuffer* command_buffer() const { function in class:gpu::gles2::GLES2ImplementationTest::TestContext
561 MockClientCommandBuffer* command_buffer() const { function in class:gpu::gles2::GLES2ImplementationTest
[all...]
/external/chromium_org/mojo/examples/surfaces_app/
H A Dchild_gl_app.cc40 CommandBufferPtr command_buffer; variable
41 gpu_service_->CreateOffscreenGLES2Context(Get(&command_buffer));
43 new ChildGLImpl(surfaces_service_connection_, command_buffer.Pass()),
H A Dchild_gl_impl.cc46 CommandBufferPtr command_buffer)
54 MojoGLES2CreateContext(command_buffer.PassMessagePipe().release().value(),
45 ChildGLImpl(ApplicationConnection* surfaces_service_connection, CommandBufferPtr command_buffer) argument
/external/chromium_org/mojo/examples/pepper_container_app/
H A Dpepper_container_app.cc92 CommandBufferPtr command_buffer; variable
98 native_viewport_id_, size.Pass(), Get(&command_buffer));
99 return command_buffer.PassMessagePipe();
/external/chromium_org/mojo/examples/sample_app/
H A Dsample_app.cc50 mojo::CommandBufferPtr command_buffer; variable
53 native_viewport_id, size.Pass(), Get(&command_buffer));
54 gles2_client_.reset(new GLES2ClientImpl(command_buffer.Pass()));
H A Dgles2_client_impl.cc12 #include "gpu/command_buffer/client/gles2_interface.h"
31 GLES2ClientImpl::GLES2ClientImpl(mojo::CommandBufferPtr command_buffer) argument
34 MojoGLES2CreateContext(command_buffer.PassMessagePipe().release().value(),
/external/chromium_org/tools/android/forwarder2/
H A Dcommand.cc46 char command_buffer[kCommandStringSize + 1]; local
48 command_buffer[kCommandStringSize] = '\0';
50 int bytes_read = socket->ReadNumBytes(command_buffer, kCommandStringSize);
61 StringPiece port_str(command_buffer, kPortStringSize);
69 &command_buffer[kPortStringSize + 1], kCommandTypeStringSize);
/external/chromium_org/content/common/gpu/client/
H A Dgpu_channel_host.cc171 CommandBufferProxyImpl* command_buffer = local
173 AddRoute(route_id, command_buffer->AsWeakPtr());
176 proxies_[route_id] = command_buffer;
177 return command_buffer;
210 CommandBufferProxyImpl* command_buffer = local
212 AddRoute(route_id, command_buffer->AsWeakPtr());
215 proxies_[route_id] = command_buffer;
216 return command_buffer;
238 CommandBufferProxyImpl* command_buffer) {
241 int route_id = command_buffer
237 DestroyCommandBuffer( CommandBufferProxyImpl* command_buffer) argument
[all...]
/external/chromium_org/ppapi/shared_impl/
H A Dppb_graphics_3d_shared.cc8 #include "gpu/command_buffer/client/gles2_cmd_helper.h"
9 #include "gpu/command_buffer/client/gles2_implementation.h"
10 #include "gpu/command_buffer/client/transfer_buffer.h"
106 gpu::CommandBuffer* command_buffer = GetCommandBuffer(); local
107 DCHECK(command_buffer);
110 gles2_helper_.reset(new gpu::gles2::GLES2CmdHelper(command_buffer));

Completed in 421 milliseconds