/external/vulkan-validation-layers/layers/ |
H A D | core_validation.h | 202 std::list<VkCommandBuffer> commandBuffers; // container of cmd buffers allocated from this pool member in struct:COMMAND_POOL_NODE
|
H A D | core_validation.cpp | 6126 for (auto cmd_buffer : pPool->commandBuffers) { 6135 for (auto cmd_buffer : pPool->commandBuffers) { 6170 pPool->commandBuffers.remove(pCommandBuffers[i]); 6221 for (auto cb : cp_state->commandBuffers) { 6240 // Destroy commandPool along with all of the commandBuffers allocated from that pool 6273 for (auto cmdBuffer : pPool->commandBuffers) { 7049 pPool->commandBuffers.push_back(pCommandBuffer[i]);
|
/external/deqp/external/vulkancts/modules/vulkan/wsi/ |
H A D | vktWsiSharedPresentableImageTests.cpp | 379 std::vector<vk::VkCommandBuffer>& commandBuffers) 381 for (size_t ndx = 0; ndx < commandBuffers.size(); ndx++) 383 if (commandBuffers[ndx] != (vk::VkCommandBuffer)0) 384 vkd.freeCommandBuffers(device, commandPool, 1u, &commandBuffers[ndx]); 386 commandBuffers[ndx] = (vk::VkCommandBuffer)0; 389 commandBuffers.clear(); 376 deinitCommandBuffers(const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkCommandPool commandPool, std::vector<vk::VkCommandBuffer>& commandBuffers) argument
|
H A D | vktWsiDisplayTimingTests.cpp | 382 std::vector<vk::VkCommandBuffer>& commandBuffers) 384 for (size_t ndx = 0; ndx < commandBuffers.size(); ndx++) 386 if (commandBuffers[ndx] != (vk::VkCommandBuffer)0) 387 vkd.freeCommandBuffers(device, commandPool, 1u, &commandBuffers[ndx]); 389 commandBuffers[ndx] = (vk::VkCommandBuffer)0; 392 commandBuffers.clear(); 379 deinitCommandBuffers(const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkCommandPool commandPool, std::vector<vk::VkCommandBuffer>& commandBuffers) argument
|
H A D | vktWsiIncrementalPresentTests.cpp | 453 std::vector<vk::VkCommandBuffer>& commandBuffers) 455 for (size_t ndx = 0; ndx < commandBuffers.size(); ndx++) 457 if (commandBuffers[ndx] != (vk::VkCommandBuffer)0) 458 vkd.freeCommandBuffers(device, commandPool, 1u, &commandBuffers[ndx]); 460 commandBuffers[ndx] = (vk::VkCommandBuffer)0; 463 commandBuffers.clear(); 450 deinitCommandBuffers(const vk::DeviceInterface& vkd, vk::VkDevice device, vk::VkCommandPool commandPool, std::vector<vk::VkCommandBuffer>& commandBuffers) argument
|
H A D | vktWsiSwapchainTests.cpp | 1435 const vector<CommandBufferSp> commandBuffers (allocateCommandBuffers(vkd, device, *commandPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY, maxQueuedFrames)); 1470 const VkCommandBuffer commandBuffer = **commandBuffers[frameNdx%commandBuffers.size()]; 1584 const vector<CommandBufferSp> commandBuffers (allocateCommandBuffers(vkd, device, *commandPool, VK_COMMAND_BUFFER_LEVEL_PRIMARY, maxQueuedFrames)); 1619 const VkCommandBuffer commandBuffer = **commandBuffers[frameNdx%commandBuffers.size()];
|
/external/deqp/external/vulkancts/modules/vulkan/ |
H A D | vktRenderPassTests.cpp | 4303 const VkCommandBuffer commandBuffers[] = 4311 queueSubmit(vk, queue, DE_LENGTH_OF_ARRAY(commandBuffers), commandBuffers, *fence); 4441 const TestConfig::CommandBufferTypes commandBuffers[] = 4526 const TestConfig::CommandBufferTypes commandBuffer = rng.choose<TestConfig::CommandBufferTypes>(DE_ARRAY_BEGIN(commandBuffers), DE_ARRAY_END(commandBuffers)); 4642 const TestConfig::CommandBufferTypes commandBuffers[] = 4922 const TestConfig::CommandBufferTypes commandBuffer = rng.choose<TestConfig::CommandBufferTypes>(DE_ARRAY_BEGIN(commandBuffers), DE_ARRAY_END(commandBuffers)); 5084 const TestConfig::CommandBufferTypes commandBuffer = rng.choose<TestConfig::CommandBufferTypes>(DE_ARRAY_BEGIN(commandBuffers), DE_ARRAY_EN [all...] |
/external/deqp/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiCommandBuffersTests.cpp | 703 const Move<VkCommandBuffer> commandBuffers[] = local 709 if (!executeCommandBuffer(vkDevice, vk, queue, *(commandBuffers[0]))) 711 if (!executeCommandBuffer(vkDevice, vk, queue, *(commandBuffers[1]), true)) 716 if (!executeCommandBuffer(vkDevice, vk, queue, *(commandBuffers[0]))) 718 if (!executeCommandBuffer(vkDevice, vk, queue, *(commandBuffers[1])))
|
H A D | vktApiObjectManagementTests.cpp | 2179 vector<VkCommandBufferSp> commandBuffers; local 2184 commandBuffers.push_back(VkCommandBufferSp(new Move<VkCommandBuffer>(check<VkCommandBuffer>(pHandles[i]), Deleter<VkCommandBuffer>(env.vkd, env.device, *res.commandPool.object)))); 2187 return commandBuffers;
|
/external/vulkan-validation-layers/demos/ |
H A D | cube.cpp | 609 vk::CommandBuffer const commandBuffers[] = {cmd}; member in class:Demo::vk 612 commandBuffers); 620 device.freeCommandBuffers(cmd_pool, 1, commandBuffers);
|
/external/vulkan-validation-layers/include/vulkan/ |
H A D | vulkan.hpp | 14405 void executeCommands( ArrayProxy<const CommandBuffer> commandBuffers ) const 14407 vkCmdExecuteCommands( m_commandBuffer, commandBuffers.size() , reinterpret_cast<const VkCommandBuffer*>( commandBuffers.data() ) ); 16983 std::vector<CommandBuffer,Allocator> commandBuffers( allocateInfo.commandBufferCount ); 16984 Result result = static_cast<Result>( vkAllocateCommandBuffers( m_device, reinterpret_cast<const VkCommandBufferAllocateInfo*>( &allocateInfo ), reinterpret_cast<VkCommandBuffer*>( commandBuffers.data() ) ) ); 16985 return createResultValue( result, commandBuffers, "vk::Device::allocateCommandBuffers" ); 16995 void freeCommandBuffers( CommandPool commandPool, ArrayProxy<const CommandBuffer> commandBuffers ) const 16997 vkFreeCommandBuffers( m_device, static_cast<VkCommandPool>( commandPool ), commandBuffers.size() , reinterpret_cast<const VkCommandBuffer*>( commandBuffers.data() ) );
|