Home
last modified time | relevance | path

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

/external/deqp/external/vulkancts/modules/vulkan/wsi/
DvktWsiSharedPresentableImageTests.cpp349 std::vector<vk::VkCommandBuffer>& commandBuffers) in deinitCommandBuffers() argument
351 for (size_t ndx = 0; ndx < commandBuffers.size(); ndx++) in deinitCommandBuffers()
353 if (commandBuffers[ndx] != (vk::VkCommandBuffer)0) in deinitCommandBuffers()
354 vkd.freeCommandBuffers(device, commandPool, 1u, &commandBuffers[ndx]); in deinitCommandBuffers()
356 commandBuffers[ndx] = (vk::VkCommandBuffer)0; in deinitCommandBuffers()
359 commandBuffers.clear(); in deinitCommandBuffers()
DvktWsiDisplayTimingTests.cpp337 std::vector<vk::VkCommandBuffer>& commandBuffers) in deinitCommandBuffers() argument
339 for (size_t ndx = 0; ndx < commandBuffers.size(); ndx++) in deinitCommandBuffers()
341 if (commandBuffers[ndx] != (vk::VkCommandBuffer)0) in deinitCommandBuffers()
342 vkd.freeCommandBuffers(device, commandPool, 1u, &commandBuffers[ndx]); in deinitCommandBuffers()
344 commandBuffers[ndx] = (vk::VkCommandBuffer)0; in deinitCommandBuffers()
347 commandBuffers.clear(); in deinitCommandBuffers()
DvktWsiIncrementalPresentTests.cpp450 std::vector<vk::VkCommandBuffer>& commandBuffers) in deinitCommandBuffers() argument
452 for (size_t ndx = 0; ndx < commandBuffers.size(); ndx++) in deinitCommandBuffers()
454 if (commandBuffers[ndx] != (vk::VkCommandBuffer)0) in deinitCommandBuffers()
455 vkd.freeCommandBuffers(device, commandPool, 1u, &commandBuffers[ndx]); in deinitCommandBuffers()
457 commandBuffers[ndx] = (vk::VkCommandBuffer)0; in deinitCommandBuffers()
460 commandBuffers.clear(); in deinitCommandBuffers()
DvktWsiSwapchainTests.cpp1379 …const vector<CommandBufferSp> commandBuffers (allocateCommandBuffers(vkd, device, *commandPool,… in basicRenderTest() local
1414 const VkCommandBuffer commandBuffer = **commandBuffers[frameNdx%commandBuffers.size()]; in basicRenderTest()
1528 …const vector<CommandBufferSp> commandBuffers (allocateCommandBuffers(vkd, device, *commandPool,… in resizeSwapchainTest() local
1563 const VkCommandBuffer commandBuffer = **commandBuffers[frameNdx%commandBuffers.size()]; in resizeSwapchainTest()
/external/vulkan-validation-layers/layers/
Dcore_validation.h202 std::list<VkCommandBuffer> commandBuffers; // container of cmd buffers allocated from this pool member
Dcore_validation.cpp6126 for (auto cmd_buffer : pPool->commandBuffers) { in checkCommandBuffersInFlight()
6135 for (auto cmd_buffer : pPool->commandBuffers) { in clearCommandBuffersInFlight()
6170 pPool->commandBuffers.remove(pCommandBuffers[i]); in FreeCommandBuffers()
6221 for (auto cb : cp_state->commandBuffers) { in PostCallRecordDestroyCommandPool()
6273 for (auto cmdBuffer : pPool->commandBuffers) { in ResetCommandPool()
7049 pPool->commandBuffers.push_back(pCommandBuffer[i]); in AllocateCommandBuffers()
Dvk_validation_error_database.txt970 …et Binding' which states 'pipelineBindPoint must be supported by the commandBuffers parent VkComma…
/external/deqp/external/vulkancts/modules/vulkan/renderpass/
DvktRenderPassTests.cpp4551 const VkCommandBuffer commandBuffers[] = in renderPassTest() local
4559 queueSubmit(vk, queue, DE_LENGTH_OF_ARRAY(commandBuffers), commandBuffers, *fence); in renderPassTest()
4689 const TestConfig::CommandBufferTypes commandBuffers[] = in addAttachmentTests() local
4774 …choose<TestConfig::CommandBufferTypes>(DE_ARRAY_BEGIN(commandBuffers), DE_ARRAY_END(commandBuffers in addAttachmentTests()
4890 const TestConfig::CommandBufferTypes commandBuffers[] = in addAttachmentAllocationTests() local
5170 …choose<TestConfig::CommandBufferTypes>(DE_ARRAY_BEGIN(commandBuffers), DE_ARRAY_END(commandBuffers in addAttachmentAllocationTests()
5332 …choose<TestConfig::CommandBufferTypes>(DE_ARRAY_BEGIN(commandBuffers), DE_ARRAY_END(commandBuffers in addAttachmentAllocationTests()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiCommandBuffersTests.cpp665 const Move<VkCommandBuffer> commandBuffers[] = in resetPoolReuseTest() local
671 if (!executeCommandBuffer(vkDevice, vk, queue, *(commandBuffers[0]))) in resetPoolReuseTest()
673 if (!executeCommandBuffer(vkDevice, vk, queue, *(commandBuffers[1]), true)) in resetPoolReuseTest()
678 if (!executeCommandBuffer(vkDevice, vk, queue, *(commandBuffers[0]))) in resetPoolReuseTest()
680 if (!executeCommandBuffer(vkDevice, vk, queue, *(commandBuffers[1]))) in resetPoolReuseTest()
DvktApiObjectManagementTests.cpp2180 vector<VkCommandBufferSp> commandBuffers; in createMultiple() local
2185commandBuffers.push_back(VkCommandBufferSp(new Move<VkCommandBuffer>(check<VkCommandBuffer>(pHandl… in createMultiple()
2188 return commandBuffers; in createMultiple()
/external/vulkan-validation-layers/demos/
Dcube.cpp609 vk::CommandBuffer const commandBuffers[] = {cmd}; in flush_init_cmd() local
612 commandBuffers); in flush_init_cmd()
620 device.freeCommandBuffers(cmd_pool, 1, commandBuffers); in flush_init_cmd()
/external/vulkan-validation-layers/include/vulkan/
Dvulkan.hpp14405 void executeCommands( ArrayProxy<const CommandBuffer> commandBuffers ) const in executeCommands()
14407 …mdExecuteCommands( m_commandBuffer, commandBuffers.size() , reinterpret_cast<const VkCommandBuffer… in executeCommands()
16983 std::vector<CommandBuffer,Allocator> commandBuffers( allocateInfo.commandBufferCount ); in allocateCommandBuffers() local
16984 …erAllocateInfo*>( &allocateInfo ), reinterpret_cast<VkCommandBuffer*>( commandBuffers.data() ) ) ); in allocateCommandBuffers()
16985 return createResultValue( result, commandBuffers, "vk::Device::allocateCommandBuffers" ); in allocateCommandBuffers()
16995 …freeCommandBuffers( CommandPool commandPool, ArrayProxy<const CommandBuffer> commandBuffers ) const in freeCommandBuffers()
16997 …cast<VkCommandPool>( commandPool ), commandBuffers.size() , reinterpret_cast<const VkCommandBuffer… in freeCommandBuffers()