Home
last modified time | relevance | path

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

/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiDescriptorPoolTests.cpp79 const VkDescriptorPoolCreateInfo descriptorPoolInfo = in resetDescriptorPoolTest() local
92 &descriptorPoolInfo)); in resetDescriptorPoolTest()
DvktApiObjectManagementTests.cpp1990 const VkDescriptorPoolCreateInfo descriptorPoolInfo = in create() local
2000 return createDescriptorPool(env.vkd, env.device, &descriptorPoolInfo, env.allocationCallbacks); in create()
/external/angle/src/libANGLE/renderer/vulkan/
Dvk_helpers.cpp2399 VkDescriptorPoolCreateInfo descriptorPoolInfo = {}; in init() local
2400 descriptorPoolInfo.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO; in init()
2401 descriptorPoolInfo.flags = 0; in init()
2402 descriptorPoolInfo.maxSets = maxSets; in init()
2403 descriptorPoolInfo.poolSizeCount = static_cast<uint32_t>(poolSizes.size()); in init()
2404 descriptorPoolInfo.pPoolSizes = poolSizes.data(); in init()
2408 ANGLE_VK_TRY(contextVk, mDescriptorPool.init(contextVk->getDevice(), descriptorPoolInfo)); in init()