Home
last modified time | relevance | path

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

/external/swiftshader/src/Vulkan/
DVkCommandBuffer.cpp29 class CommandBuffer::Command
33 virtual void play(CommandBuffer::ExecutionState& executionState) = 0;
37 class BeginRenderPass : public CommandBuffer::Command
56 void play(CommandBuffer::ExecutionState& executionState) in play()
72 class NextSubpass : public CommandBuffer::Command
80 void play(CommandBuffer::ExecutionState& executionState) in play()
88 class EndRenderPass : public CommandBuffer::Command
96 void play(CommandBuffer::ExecutionState& executionState) in play()
106 class PipelineBind : public CommandBuffer::Command
115 void play(CommandBuffer::ExecutionState& executionState) in play()
[all …]
DVkCommandBuffer.hpp35 class CommandBuffer class
40 CommandBuffer(VkCommandBufferLevel pLevel);
137 void submit(CommandBuffer::ExecutionState& executionState);
152 using DispatchableCommandBuffer = DispatchableObject<CommandBuffer, VkCommandBuffer>;
154 static inline CommandBuffer* Cast(VkCommandBuffer object) in Cast()
DVkQueue.cpp47 CommandBuffer::ExecutionState executionState; in submit()
/external/vulkan-validation-layers/tests/
Dvktestbinding.cpp397 VkResult Queue::submit(const std::vector<const CommandBuffer *> &cmds, const Fence &fence, bool exp… in submit()
415 VkResult Queue::submit(const CommandBuffer &cmd, const Fence &fence, bool expect_success) { in submit()
416 return submit(std::vector<const CommandBuffer *>(1, &cmd), fence, expect_success); in submit()
419 VkResult Queue::submit(const CommandBuffer &cmd, bool expect_success) { in submit()
749 CommandBuffer::~CommandBuffer() { in ~CommandBuffer()
756 void CommandBuffer::init(const Device &dev, const VkCommandBufferAllocateInfo &info) { in init()
769 void CommandBuffer::begin(const VkCommandBufferBeginInfo *info) { EXPECT(vkBeginCommandBuffer(handl… in begin()
771 void CommandBuffer::begin() { in begin()
789 void CommandBuffer::end() { EXPECT(vkEndCommandBuffer(handle()) == VK_SUCCESS); } in end()
791 void CommandBuffer::reset(VkCommandBufferResetFlags flags) { EXPECT(vkResetCommandBuffer(handle(), … in reset()
Dvktestbinding.h76 class CommandBuffer; variable
290 …VkResult submit(const std::vector<const CommandBuffer *> &cmds, const Fence &fence, bool expect_su…
291 VkResult submit(const CommandBuffer &cmd, const Fence &fence, bool expect_success = true);
292 VkResult submit(const CommandBuffer &cmd, bool expect_success = true);
711 class CommandBuffer : public internal::Handle<VkCommandBuffer> {
713 ~CommandBuffer();
715 explicit CommandBuffer() : Handle() {} in CommandBuffer() function
716 …explicit CommandBuffer(const Device &dev, const VkCommandBufferAllocateInfo &info) { init(dev, inf… in CommandBuffer() function
983 inline VkCommandBufferAllocateInfo CommandBuffer::create_info(VkCommandPool const &pool) { in create_info()
Dvkrenderframework.h192 class VkCommandBufferObj : public vk_testing::CommandBuffer {
Dvkrenderframework.cpp1615 auto create_info = vk_testing::CommandBuffer::create_info(pool->handle()); in VkCommandBufferObj()
Dlayer_validation_tests.cpp458 VkCommandBufferObj *CommandBuffer() { return m_commandBuffer; } in CommandBuffer() function in VkLayerTest
27836 … VkCommandBufferAllocateInfo cmdalloc = vk_testing::CommandBuffer::create_info(secondary_cmd_pool); in TEST_F()
/external/vulkan-headers/include/vulkan/
Dvulkan.hpp11837 class CommandBuffer class
11840 VULKAN_HPP_CONSTEXPR CommandBuffer() in CommandBuffer() function in VULKAN_HPP_NAMESPACE::CommandBuffer
11844 VULKAN_HPP_CONSTEXPR CommandBuffer( std::nullptr_t ) in CommandBuffer() function in VULKAN_HPP_NAMESPACE::CommandBuffer
11848 VULKAN_HPP_TYPESAFE_EXPLICIT CommandBuffer( VkCommandBuffer commandBuffer ) in CommandBuffer() function in VULKAN_HPP_NAMESPACE::CommandBuffer
11853 CommandBuffer & operator=(VkCommandBuffer commandBuffer) in operator =()
11860 CommandBuffer & operator=( std::nullptr_t ) in operator =()
11866 bool operator==( CommandBuffer const & rhs ) const in operator ==()
11871 bool operator!=(CommandBuffer const & rhs ) const in operator !=()
11876 bool operator<(CommandBuffer const & rhs ) const in operator <()
12123 …void executeCommands( uint32_t commandBufferCount, const CommandBuffer* pCommandBuffers, Dispatch …
[all …]
/external/deqp/external/vulkancts/framework/vulkan/
DvkNullDriver.cpp497 class CommandBuffer class
500 CommandBuffer (VkDevice, VkCommandPool, VkCommandBufferLevel) in CommandBuffer() function in vk::__anon9294a1450111::CommandBuffer
526 vector<CommandBuffer*> m_buffers;
537CommandBuffer* const impl = new CommandBuffer(m_device, VkCommandPool(reinterpret_cast<deUintptr>(… in allocate()
554 CommandBuffer* const impl = reinterpret_cast<CommandBuffer*>(buffer); in free()
/external/swiftshader/include/vulkan/
Dvulkan.hpp37723 class CommandBuffer class
37726 VULKAN_HPP_CONSTEXPR CommandBuffer() in CommandBuffer() function in VULKAN_HPP_NAMESPACE::CommandBuffer
37730 VULKAN_HPP_CONSTEXPR CommandBuffer( std::nullptr_t ) in CommandBuffer() function in VULKAN_HPP_NAMESPACE::CommandBuffer
37734 VULKAN_HPP_TYPESAFE_EXPLICIT CommandBuffer( VkCommandBuffer commandBuffer ) in CommandBuffer() function in VULKAN_HPP_NAMESPACE::CommandBuffer
37739 CommandBuffer & operator=(VkCommandBuffer commandBuffer) in operator =()
37746 CommandBuffer & operator=( std::nullptr_t ) in operator =()
37752 bool operator==( CommandBuffer const & rhs ) const in operator ==()
37757 bool operator!=(CommandBuffer const & rhs ) const in operator !=()
37762 bool operator<(CommandBuffer const & rhs ) const in operator <()
38002 …void executeCommands( uint32_t commandBufferCount, const CommandBuffer* pCommandBuffers, Dispatch …
[all …]
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiObjectManagementTests.cpp2196 struct CommandBuffer struct
2223 return getSafeObjectCount<CommandBuffer>(context, params, DEFAULT_MAX_CONCURRENT_OBJECTS); in getMaxConcurrent()
2768 CaseDescription<CommandBuffer> commandBuffer;
2953 static const NamedParameters<CommandBuffer> s_commandBufferCases[] = in createObjectManagementTests()
2955 …{ "command_buffer_primary", CommandBuffer::Parameters(CommandPool::Parameters((VkCommandPoolCreat… in createObjectManagementTests()
2956 …{ "command_buffer_secondary", CommandBuffer::Parameters(CommandPool::Parameters((VkCommandPoolCrea… in createObjectManagementTests()
2985 CASE_DESC(createSingleTest <CommandBuffer>, s_commandBufferCases), in createObjectManagementTests()
3015 CASE_DESC(createMultipleUniqueResourcesTest <CommandBuffer>, s_commandBufferCases), in createObjectManagementTests()
3045 CASE_DESC(createMultipleSharedResourcesTest <CommandBuffer>, s_commandBufferCases), in createObjectManagementTests()
3075 CASE_DESC(createMaxConcurrentTest <CommandBuffer>, s_commandBufferCases), in createObjectManagementTests()
[all …]