Home
last modified time | relevance | path

Searched refs:descriptorPoolInfo (Results 1 – 4 of 4) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiDescriptorPoolTests.cpp94 const VkDescriptorPoolCreateInfo descriptorPoolInfo = in resetDescriptorPoolTest() local
107 &descriptorPoolInfo)); in resetDescriptorPoolTest()
DvktApiObjectManagementTests.cpp2181 const VkDescriptorPoolCreateInfo descriptorPoolInfo = in create() local
2191 return createDescriptorPool(env.vkd, env.device, &descriptorPoolInfo, env.allocationCallbacks); in create()
/external/angle/third_party/vulkan_memory_allocator/src/
DVulkanSample.cpp2113 … VkDescriptorPoolCreateInfo descriptorPoolInfo = { VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO }; in InitializeApplication() local
2114 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()
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_helpers.cpp3592 VkDescriptorPoolCreateInfo descriptorPoolInfo = {}; in init() local
3593 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()