7 VkDescriptorPoolCreateInfo descriptorPoolInfo{};
8 descriptorPoolInfo.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
9 descriptorPoolInfo.poolSizeCount =
static_cast<uint32_t
>(poolSizes.size());
10 descriptorPoolInfo.pPoolSizes = poolSizes.data();
11 descriptorPoolInfo.maxSets = maxSets;
12 descriptorPoolInfo.flags = poolFlags;
16 throw std::runtime_error(
"failed to create descriptor pool!");
22 VkDescriptorSetAllocateInfo allocInfo{};
23 allocInfo.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO;
24 allocInfo.descriptorPool = m_descriptorPool;
25 allocInfo.pSetLayouts = &descriptorSetLayout;
26 allocInfo.descriptorSetCount = 1;
30 return vkAllocateDescriptorSets(m_device.device(), &allocInfo, &descriptor) == VK_SUCCESS;