Lugdunum  0.1.0
DescriptorPool.inl
Go to the documentation of this file.
1 inline void DescriptorPool::setFlags(VkDescriptorPoolCreateFlags flags) {
2  _flags = flags;
3 }
4 
5 inline void DescriptorPool::setMaxSets(uint32_t maxSets) {
6  _maxSets = maxSets;
7 }
8 
9 inline void DescriptorPool::setPoolSizes(const std::vector<VkDescriptorPoolSize>& poolSizes) {
10  _poolSizes = poolSizes;
11 }