vengine  0.0.1
3D graphics engine
Loading...
Searching...
No Matches
pool.cpp
Go to the documentation of this file.
1#include <stdexcept>
2
4
5ven::DescriptorPool::DescriptorPool(Device &device, const uint32_t maxSets, const VkDescriptorPoolCreateFlags poolFlags, const std::vector<VkDescriptorPoolSize> &poolSizes) : m_device{device}
6{
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;
13
14 if (vkCreateDescriptorPool(m_device.device(), &descriptorPoolInfo, nullptr, &m_descriptorPool) !=
15 VK_SUCCESS) {
16 throw std::runtime_error("failed to create descriptor pool!");
17 }
18}
19
20bool ven::DescriptorPool::allocateDescriptor(const VkDescriptorSetLayout descriptorSetLayout, VkDescriptorSet &descriptor) const
21{
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;
27
28 // Might want to create a "DescriptorPoolManager" class that handles this case, and builds
29 // a new pool whenever an old pool fills up. But this is beyond our current scope
30 return vkAllocateDescriptorSets(m_device.device(), &allocInfo, &descriptor) == VK_SUCCESS;
31}
This file contains the DescriptorPool class.
VkDescriptorPool m_descriptorPool
Definition Pool.hpp:64
DescriptorPool(Device &device, uint32_t maxSets, VkDescriptorPoolCreateFlags poolFlags, const std::vector< VkDescriptorPoolSize > &poolSizes)
Definition pool.cpp:5
Device & m_device
Definition Pool.hpp:63
bool allocateDescriptor(VkDescriptorSetLayout descriptorSetLayout, VkDescriptorSet &descriptor) const
Definition pool.cpp:20
Class for device.
Definition Device.hpp:35
VkDevice device() const
Definition Device.hpp:54