Searched refs:descriptorPoolInfo (Results 1 – 4 of 4) sorted by relevance
94 const VkDescriptorPoolCreateInfo descriptorPoolInfo = in resetDescriptorPoolTest() local107 &descriptorPoolInfo)); in resetDescriptorPoolTest()
2181 const VkDescriptorPoolCreateInfo descriptorPoolInfo = in create() local2191 return createDescriptorPool(env.vkd, env.device, &descriptorPoolInfo, env.allocationCallbacks); in create()
2113 … VkDescriptorPoolCreateInfo descriptorPoolInfo = { VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO }; in InitializeApplication() local2114 descriptorPoolInfo.poolSizeCount = (uint32_t)_countof(descriptorPoolSizes); in InitializeApplication()2115 descriptorPoolInfo.pPoolSizes = descriptorPoolSizes; in InitializeApplication()2116 descriptorPoolInfo.maxSets = 1; in InitializeApplication()2117 …ERR_GUARD_VULKAN( vkCreateDescriptorPool(g_hDevice, &descriptorPoolInfo, g_Allocs, &g_hDescriptorP… in InitializeApplication()
3592 VkDescriptorPoolCreateInfo descriptorPoolInfo = {}; in init() local3593 descriptorPoolInfo.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO; in init()3594 descriptorPoolInfo.flags = 0; in init()3595 descriptorPoolInfo.maxSets = maxSets; in init()3596 descriptorPoolInfo.poolSizeCount = static_cast<uint32_t>(poolSizes.size()); in init()3597 descriptorPoolInfo.pPoolSizes = poolSizes.data(); in init()3602 ANGLE_VK_TRY(context, mDescriptorPool.init(renderer->getDevice(), descriptorPoolInfo)); in init()