Home
last modified time | relevance | path

Searched refs:commandPoolInfo (Results 1 – 2 of 2) sorted by relevance

/external/angle/src/libANGLE/renderer/vulkan/
DPersistentCommandPool.cpp32 VkCommandPoolCreateInfo commandPoolInfo = {}; in init() local
33 commandPoolInfo.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO; in init()
36 commandPoolInfo.flags = in init()
42 commandPoolInfo.flags |= VK_COMMAND_POOL_CREATE_PROTECTED_BIT; in init()
44 commandPoolInfo.queueFamilyIndex = queueFamilyIndex; in init()
46 ANGLE_VK_TRY(context, mCommandPool.init(context->getDevice(), commandPoolInfo)); in init()
/external/angle/third_party/vulkan_memory_allocator/src/
DVulkanSample.cpp2071 VkCommandPoolCreateInfo commandPoolInfo = { VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO }; in InitializeApplication() local
2072 commandPoolInfo.queueFamilyIndex = g_GraphicsQueueFamilyIndex; in InitializeApplication()
2073 commandPoolInfo.flags = VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT; in InitializeApplication()
2074 ERR_GUARD_VULKAN( vkCreateCommandPool(g_hDevice, &commandPoolInfo, g_Allocs, &g_hCommandPool) ); in InitializeApplication()