Searched refs:commandPoolInfo (Results 1 – 2 of 2) sorted by relevance
32 VkCommandPoolCreateInfo commandPoolInfo = {}; in init() local33 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()
2071 VkCommandPoolCreateInfo commandPoolInfo = { VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO }; in InitializeApplication() local2072 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()