Home
last modified time | relevance | path

Searched refs:CommandBuffer (Results 1 – 25 of 82) sorted by relevance

1234

/external/swiftshader/src/Vulkan/
DVkCommandBuffer.cpp41 class CmdBeginRenderPass : public vk::CommandBuffer::Command
61 void play(vk::CommandBuffer::ExecutionState &executionState) override in play()
79 class CmdNextSubpass : public vk::CommandBuffer::Command
82 void play(vk::CommandBuffer::ExecutionState &executionState) override in play()
100 class CmdEndRenderPass : public vk::CommandBuffer::Command
103 void play(vk::CommandBuffer::ExecutionState &executionState) override in play()
120 class CmdExecuteCommands : public vk::CommandBuffer::Command
123 CmdExecuteCommands(const vk::CommandBuffer *commandBuffer) in CmdExecuteCommands()
128 void play(vk::CommandBuffer::ExecutionState &executionState) override in play()
136 const vk::CommandBuffer *commandBuffer;
[all …]
DVkCommandBuffer.hpp49 class CommandBuffer class
54 CommandBuffer(Device *device, VkCommandBufferLevel pLevel);
170 void submit(CommandBuffer::ExecutionState &executionState);
171 void submitSecondary(CommandBuffer::ExecutionState &executionState) const;
207 using DispatchableCommandBuffer = DispatchableObject<CommandBuffer, VkCommandBuffer>;
209 static inline CommandBuffer *Cast(VkCommandBuffer object) in Cast()
/external/deqp-deps/amber/src/vulkan/
Dframe_buffer.h27 class CommandBuffer; variable
43 void ChangeFrameToDrawLayout(CommandBuffer* command);
44 void ChangeFrameToProbeLayout(CommandBuffer* command);
45 void ChangeFrameToWriteLayout(CommandBuffer* command);
55 void TransferImagesToHost(CommandBuffer* command);
56 void TransferImagesToDevice(CommandBuffer* command);
65 void ChangeFrameLayout(CommandBuffer* command,
Dcommand_buffer.cc25 CommandBuffer::CommandBuffer(Device* device, CommandPool* pool) in CommandBuffer() function in amber::vulkan::CommandBuffer
28 CommandBuffer::~CommandBuffer() { in ~CommandBuffer()
40 Result CommandBuffer::Initialize() { in Initialize()
62 Result CommandBuffer::BeginRecording() { in BeginRecording()
75 Result CommandBuffer::SubmitAndReset(uint32_t timeout_ms) { in SubmitAndReset()
109 void CommandBuffer::Reset() { in Reset()
117 CommandBufferGuard::CommandBufferGuard(CommandBuffer* buffer) in CommandBufferGuard()
Dcommand_buffer.h39 class CommandBuffer {
41 CommandBuffer(Device* device, CommandPool* pool);
42 ~CommandBuffer();
77 explicit CommandBufferGuard(CommandBuffer* buffer);
90 CommandBuffer* buffer_;
Dresource.h28 class CommandBuffer; variable
39 virtual void CopyToDevice(CommandBuffer* command_buffer) = 0;
42 virtual void CopyToHost(CommandBuffer* command_buffer) = 0;
65 void MemoryBarrier(CommandBuffer* command_buffer);
Dtransfer_image.h26 class CommandBuffer; variable
48 void ImageBarrier(CommandBuffer* command_buffer,
54 void CopyToDevice(CommandBuffer* command_buffer) override;
57 void CopyToHost(CommandBuffer* command_buffer) override;
Dindex_buffer.h31 class CommandBuffer; variable
41 Result SendIndexData(CommandBuffer* command, Buffer* buffer);
44 Result BindToCommandBuffer(CommandBuffer* command);
Dtransfer_buffer.h28 class CommandBuffer; variable
44 void CopyToDevice(CommandBuffer* command_buffer) override;
47 void CopyToHost(CommandBuffer* command_buffer) override;
Dframe_buffer.cc121 void FrameBuffer::ChangeFrameLayout(CommandBuffer* command, in ChangeFrameLayout()
133 void FrameBuffer::ChangeFrameToDrawLayout(CommandBuffer* command) { in ChangeFrameToDrawLayout()
143 void FrameBuffer::ChangeFrameToProbeLayout(CommandBuffer* command) { in ChangeFrameToProbeLayout()
152 void FrameBuffer::ChangeFrameToWriteLayout(CommandBuffer* command) { in ChangeFrameToWriteLayout()
161 void FrameBuffer::TransferImagesToHost(CommandBuffer* command) { in TransferImagesToHost()
187 void FrameBuffer::TransferImagesToDevice(CommandBuffer* command) { in TransferImagesToDevice()
Dvertex_buffer.h32 class CommandBuffer; variable
41 Result SendVertexData(CommandBuffer* command);
60 void BindToCommandBuffer(CommandBuffer* command);
Ddescriptor.h31 class CommandBuffer; variable
60 virtual Result RecordCopyDataToResourceIfNeeded(CommandBuffer*) { return {}; } in RecordCopyDataToResourceIfNeeded() argument
61 virtual Result RecordCopyDataToHost(CommandBuffer*) { return {}; } in RecordCopyDataToHost() argument
Dpush_constant.h28 class CommandBuffer; variable
41 Result RecordPushConstantVkCommand(CommandBuffer* command,
Dindex_buffer.cc30 Result IndexBuffer::SendIndexData(CommandBuffer* command, Buffer* buffer) { in SendIndexData()
53 Result IndexBuffer::BindToCommandBuffer(CommandBuffer* command) { in BindToCommandBuffer()
Dimage_descriptor.h39 Result RecordCopyDataToResourceIfNeeded(CommandBuffer* command) override;
41 Result RecordCopyDataToHost(CommandBuffer* command) override;
Dbuffer_backed_descriptor.h42 Result RecordCopyDataToResourceIfNeeded(CommandBuffer* command) override;
43 Result RecordCopyDataToHost(CommandBuffer* command) override;
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_wrapper.h62 CommandBuffer, enumerator
72 class CommandBuffer; in ANGLE_HANDLE_TYPES_X() local
89 struct HandleTypeHelper<priv::CommandBuffer>
91 constexpr static HandleType kHandleType = HandleType::CommandBuffer;
166 class CommandBuffer : public WrappedObject<CommandBuffer, VkCommandBuffer>
169 CommandBuffer() = default;
306 void executeCommands(uint32_t commandBufferCount, const CommandBuffer *commandBuffers);
710 ANGLE_INLINE VkCommandBuffer CommandBuffer::releaseHandle()
717 ANGLE_INLINE VkResult CommandBuffer::init(VkDevice device,
724 ANGLE_INLINE void CommandBuffer::blitImage(const Image &srcImage,
[all …]
DCommandGraph.h77 CommandBuffer *mRenderPassCommandBuffer = nullptr;
88 CommandBuffer *getOutsideRenderPassCommands() in getOutsideRenderPassCommands()
94 CommandBuffer *getInsideRenderPassCommands() in getInsideRenderPassCommands()
103 CommandBuffer **commandsOut);
106 angle::Result beginInsideRenderPassRecording(ContextVk *context, CommandBuffer **commandsOut);
252 CommandBuffer mOutsideRenderPassCommands;
253 CommandBuffer mInsideRenderPassCommands;
480 angle::Result recordCommands(ContextVk *context, CommandBuffer **commandBufferOut);
490 CommandBuffer **commandBufferOut);
499 CommandBuffer **commandBufferOut);
[all …]
DSemaphoreVk.cpp121 vk::CommandBuffer *commandBuffer; in wait()
141 vk::CommandBuffer *commandBuffer; in wait()
177 vk::CommandBuffer *commandBuffer; in signal()
207 vk::CommandBuffer *commandBuffer; in signal()
/external/angle/src/libANGLE/renderer/metal/
Dmtl_command_buffer.h35 class CommandBuffer; variable
94 class CommandBuffer final : public WrappedObject<id<MTLCommandBuffer>>, angle::NonCopyable
97 CommandBuffer(CommandQueue *cmdQueue);
98 ~CommandBuffer();
190 CommandEncoder(CommandBuffer *cmdBuffer, Type type);
192 CommandBuffer &cmdBuffer() { return mCmdBuffer; } in cmdBuffer()
201 CommandBuffer &mCmdBuffer;
314 RenderCommandEncoder(CommandBuffer *cmdBuffer, const OcclusionQueryPool &queryPool);
532 BlitCommandEncoder(CommandBuffer *cmdBuffer);
592 ComputeCommandEncoder(CommandBuffer *cmdBuffer);
Dmtl_command_buffer.mm569 // CommandBuffer implementation
570 CommandBuffer::CommandBuffer(CommandQueue *cmdQueue) : mCmdQueue(*cmdQueue) {}
572 CommandBuffer::~CommandBuffer()
578 bool CommandBuffer::ready() const
585 void CommandBuffer::commit()
591 void CommandBuffer::finish()
597 void CommandBuffer::present(id<CAMetalDrawable> presentationDrawable)
602 void CommandBuffer::setWriteDependency(const ResourceRef &resource)
619 void CommandBuffer::setReadDependency(const ResourceRef &resource)
624 void CommandBuffer::setReadDependency(Resource *resource)
[all …]
/external/angle/third_party/vulkan-deps/vulkan-headers/src/include/vulkan/
Dvulkan_funcs.hpp4020 … VULKAN_HPP_NAMESPACE::CommandBuffer * pCommandBuffers, in allocateCommandBuffers()
4032 typename ResultValueType<std::vector<CommandBuffer, CommandBufferAllocator>>::type
4035 …std::vector<CommandBuffer, CommandBufferAllocator> commandBuffers( allocateInfo.commandBufferCount… in allocateCommandBuffers()
4046 … typename std::enable_if<std::is_same<typename B::value_type, CommandBuffer>::value, int>::type>
4048 typename ResultValueType<std::vector<CommandBuffer, CommandBufferAllocator>>::type
4053 …std::vector<CommandBuffer, CommandBufferAllocator> commandBuffers( allocateInfo.commandBufferCount, in allocateCommandBuffers()
4065 …typename ResultValueType<std::vector<UniqueHandle<CommandBuffer, Dispatch>, CommandBufferAllocator…
4068 std::vector<UniqueHandle<CommandBuffer, Dispatch>, CommandBufferAllocator> uniqueCommandBuffers; in allocateCommandBuffersUnique()
4069 std::vector<CommandBuffer> commandBuffers( allocateInfo.commandBufferCount ); in allocateCommandBuffersUnique()
4080 …uniqueCommandBuffers.push_back( UniqueHandle<CommandBuffer, Dispatch>( commandBuffers[i], deleter … in allocateCommandBuffersUnique()
[all …]
/external/swiftshader/tests/VulkanWrapper/
DUtil.cpp40 vk::CommandBuffer beginSingleTimeCommands(vk::Device device, vk::CommandPool commandPool) in beginSingleTimeCommands()
57 …s(vk::Device device, vk::CommandPool commandPool, vk::Queue queue, vk::CommandBuffer commandBuffer) in endSingleTimeCommands()
74 vk::CommandBuffer commandBuffer = beginSingleTimeCommands(device, commandPool); in transitionImageLayout()
119 vk::CommandBuffer commandBuffer = beginSingleTimeCommands(device, commandPool); in copyBufferToImage()
DUtil.hpp27 vk::CommandBuffer beginSingleTimeCommands(vk::Device device, vk::CommandPool commandPool);
29 …(vk::Device device, vk::CommandPool commandPool, vk::Queue queue, vk::CommandBuffer commandBuffer);
/external/ms-tpm-20-ref/Samples/ARM32-FirmwareTPM/optee_ta/fTPM/platform/
DAdminPPI.c229 __in_ecount(CommandSize) UINT8 *CommandBuffer, in _admin__PPIRequest()
245 CmdBuffer = CommandBuffer; in _admin__PPIRequest()
285 __in_ecount(CommandSize) UINT8 *CommandBuffer, in _admin__PPICommand()
300 CmdBuffer = CommandBuffer; in _admin__PPICommand()

1234