Searched refs:commandBufferInfo (Results 1 – 4 of 4) sorted by relevance
/external/angle/src/libANGLE/renderer/vulkan/ |
D | PersistentCommandPool.cpp | 101 VkCommandBufferAllocateInfo commandBufferInfo = {}; in allocateCommandBuffer() local 102 commandBufferInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO; in allocateCommandBuffer() 103 commandBufferInfo.commandPool = mCommandPool.getHandle(); in allocateCommandBuffer() 104 commandBufferInfo.level = VK_COMMAND_BUFFER_LEVEL_PRIMARY; in allocateCommandBuffer() 105 commandBufferInfo.commandBufferCount = 1; in allocateCommandBuffer() 107 ANGLE_VK_TRY(context, commandBuffer.init(context->getDevice(), commandBufferInfo)); in allocateCommandBuffer()
|
/external/deqp/external/vulkancts/modules/vulkan/synchronization/ |
D | vktSynchronizationBasicSemaphoreTests.cpp | 85 VkCommandBufferSubmitInfoKHR commandBufferInfo = makeCommonCommandBufferSubmitInfo(*cmdBuffer); in basicOneQueueCase() local 94 &commandBufferInfo, // const VkCommandBufferSubmitInfoKHR* pCommandBufferInfos in basicOneQueueCase() 104 &commandBufferInfo, // const VkCommandBufferSubmitInfoKHR* pCommandBufferInfos in basicOneQueueCase() 450 VkCommandBufferSubmitInfoKHR commandBufferInfo[] in basicMultiQueueCase() local 474 &commandBufferInfo[FIRST], // const VkCommandBufferSubmitInfoKHR* pCommandBufferInfos in basicMultiQueueCase() 484 &commandBufferInfo[SECOND], // const VkCommandBufferSubmitInfoKHR* pCommandBufferInfos in basicMultiQueueCase() 518 &commandBufferInfo[FIRST], // const VkCommandBufferSubmitInfoKHR* pCommandBufferInfos in basicMultiQueueCase() 528 &commandBufferInfo[SECOND], // const VkCommandBufferSubmitInfoKHR* pCommandBufferInfos in basicMultiQueueCase()
|
D | vktSynchronizationSmokeTests.cpp | 434 VkCommandBufferAllocateInfo commandBufferInfo; in createCommandBuffer() local 439 deMemset(&commandBufferInfo, 0xcd, sizeof(commandBufferInfo)); in createCommandBuffer() 440 commandBufferInfo.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO; in createCommandBuffer() 441 commandBufferInfo.pNext = DE_NULL; in createCommandBuffer() 442 commandBufferInfo.commandPool = commandPool.get(); in createCommandBuffer() 443 commandBufferInfo.level = VK_COMMAND_BUFFER_LEVEL_PRIMARY; in createCommandBuffer() 444 commandBufferInfo.commandBufferCount = 1; in createCommandBuffer() 446 VK_CHECK(deviceInterface.allocateCommandBuffers(device, &commandBufferInfo, &commandBuffer)); in createCommandBuffer()
|
/external/angle/third_party/vulkan_memory_allocator/src/ |
D | VulkanSample.cpp | 1602 …VkCommandBufferAllocateInfo commandBufferInfo = { VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO }; in InitializeApplication() local 1603 commandBufferInfo.commandPool = g_hCommandPool; in InitializeApplication() 1604 commandBufferInfo.level = VK_COMMAND_BUFFER_LEVEL_PRIMARY; in InitializeApplication() 1605 commandBufferInfo.commandBufferCount = COMMAND_BUFFER_COUNT; in InitializeApplication() 1606 … ERR_GUARD_VULKAN( vkAllocateCommandBuffers(g_hDevice, &commandBufferInfo, g_MainCommandBuffers) ); in InitializeApplication() 1617 commandBufferInfo.commandBufferCount = 1; in InitializeApplication() 1618 …ERR_GUARD_VULKAN( vkAllocateCommandBuffers(g_hDevice, &commandBufferInfo, &g_hTemporaryCommandBuff… in InitializeApplication()
|