Searched refs:command_ (Results 1 – 6 of 6) sorted by relevance
/external/deqp-deps/amber/src/vulkan/ |
D | command_buffer.cc | 34 if (command_ != VK_NULL_HANDLE) { in ~CommandBuffer() 36 device_->GetVkDevice(), pool_->GetVkCommandPool(), 1, &command_); in ~CommandBuffer() 48 device_->GetVkDevice(), &command_info, &command_) != VK_SUCCESS) { in Initialize() 66 if (device_->GetPtrs()->vkBeginCommandBuffer(command_, &command_begin_info) != in BeginRecording() 76 if (device_->GetPtrs()->vkEndCommandBuffer(command_) != VK_SUCCESS) in SubmitAndReset() 87 submit_info.pCommandBuffers = &command_; in SubmitAndReset() 103 if (device_->GetPtrs()->vkResetCommandBuffer(command_, 0) != VK_SUCCESS) in SubmitAndReset() 111 device_->GetPtrs()->vkEndCommandBuffer(command_); in Reset() 112 device_->GetPtrs()->vkResetCommandBuffer(command_, 0); in Reset()
|
D | pipeline.cc | 52 command_ = nullptr; in ~Pipeline() 81 command_ = MakeUnique<CommandBuffer>(device_, pool); in Initialize() 82 return command_->Initialize(); in Initialize() 234 return push_constant_->RecordPushConstantVkCommand(command_.get(), in RecordPushConstant() 428 Result r = desc->RecordCopyDataToResourceIfNeeded(command_.get()); in SendDescriptorDataToDeviceIfNeeded() 464 command_->GetVkCommandBuffer(), in BindVkDescriptorSets() 481 desc->RecordCopyDataToHost(command_.get()); in ReadbackDescriptorsToHostDataQueue()
|
D | command_buffer.h | 45 VkCommandBuffer GetVkCommandBuffer() const { return command_; } in GetVkCommandBuffer() 58 VkCommandBuffer command_ = VK_NULL_HANDLE; variable
|
D | graphics_pipeline.cc | 713 return vertex_buffer->SendVertexData(command_.get()); in SendVertexBufferDataIfNeeded() 729 Result r = index_buffer_->SendIndexData(command_.get(), buffer); in SetIndexBuffer() 818 command_->GetVkCommandBuffer(), static_cast<uint32_t>(clears.size()), in Clear() 822 frame_->TransferImagesToHost(command_.get()); in Clear() 877 device_->GetPtrs()->vkCmdBindPipeline(command_->GetVkCommandBuffer(), in Draw() 882 vertex_buffer->BindToCommandBuffer(command_.get()); in Draw() 888 r = index_buffer_->BindToCommandBuffer(command_.get()); in Draw() 896 command_->GetVkCommandBuffer(), in Draw() 905 command_->GetVkCommandBuffer(), command->GetVertexCount(), in Draw() 911 frame_->TransferImagesToHost(command_.get()); in Draw()
|
D | compute_pipeline.cc | 98 device_->GetPtrs()->vkCmdBindPipeline(command_->GetVkCommandBuffer(), in Compute() 101 device_->GetPtrs()->vkCmdDispatch(command_->GetVkCommandBuffer(), x, y, z); in Compute()
|
D | pipeline.h | 67 CommandBuffer* GetCommandBuffer() const { return command_.get(); } in GetCommandBuffer() 102 std::unique_ptr<CommandBuffer> command_; variable
|