Alexis Hetu | c817663 | 2019-01-22 17:01:28 -0500 | [diff] [blame] | 1 | // Copyright 2018 The SwiftShader Authors. All Rights Reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | #ifndef VK_DESCRIPTOR_POOL_HPP_ |
| 16 | #define VK_DESCRIPTOR_POOL_HPP_ |
| 17 | |
| 18 | #include "VkObject.hpp" |
| 19 | #include <set> |
| 20 | |
| 21 | namespace vk |
| 22 | { |
| 23 | class DescriptorPool : public Object<DescriptorPool, VkDescriptorPool> |
| 24 | { |
| 25 | public: |
| 26 | DescriptorPool(const VkDescriptorPoolCreateInfo* pCreateInfo, void* mem); |
Alexis Hetu | c817663 | 2019-01-22 17:01:28 -0500 | [diff] [blame] | 27 | void destroy(const VkAllocationCallbacks* pAllocator); |
| 28 | |
| 29 | static size_t ComputeRequiredAllocationSize(const VkDescriptorPoolCreateInfo* pCreateInfo); |
| 30 | |
| 31 | VkResult allocateSets(uint32_t descriptorSetCount, const VkDescriptorSetLayout* pSetLayouts, VkDescriptorSet* pDescriptorSets); |
| 32 | void freeSets(uint32_t descriptorSetCount, const VkDescriptorSet* pDescriptorSets); |
| 33 | VkResult reset(); |
| 34 | |
| 35 | private: |
| 36 | VkResult allocateSets(size_t* sizes, uint32_t numAllocs, VkDescriptorSet* pDescriptorSets); |
Alexis Hetu | 2d77aea | 2019-06-17 13:43:50 -0400 | [diff] [blame] | 37 | uint8_t* findAvailableMemory(size_t size); |
Alexis Hetu | c817663 | 2019-01-22 17:01:28 -0500 | [diff] [blame] | 38 | void freeSet(const VkDescriptorSet descriptorSet); |
| 39 | size_t computeTotalFreeSize() const; |
| 40 | |
| 41 | struct Node |
| 42 | { |
Alexis Hetu | 2d77aea | 2019-06-17 13:43:50 -0400 | [diff] [blame] | 43 | Node(uint8_t* set, size_t size) : set(set), size(size) {} |
Alexis Hetu | 126bd7a | 2019-05-10 17:07:42 -0400 | [diff] [blame] | 44 | bool operator<(const Node& node) const { return set < node.set; } |
Alexis Hetu | 2d77aea | 2019-06-17 13:43:50 -0400 | [diff] [blame] | 45 | bool operator==(const uint8_t* other) const { return set == other; } |
Alexis Hetu | c817663 | 2019-01-22 17:01:28 -0500 | [diff] [blame] | 46 | |
Alexis Hetu | 2d77aea | 2019-06-17 13:43:50 -0400 | [diff] [blame] | 47 | uint8_t* set = nullptr; |
Alexis Hetu | 67cf8a9 | 2019-05-09 17:46:07 -0400 | [diff] [blame] | 48 | size_t size = 0; |
Alexis Hetu | c817663 | 2019-01-22 17:01:28 -0500 | [diff] [blame] | 49 | }; |
| 50 | std::set<Node> nodes; |
| 51 | |
Alexis Hetu | 2d77aea | 2019-06-17 13:43:50 -0400 | [diff] [blame] | 52 | uint8_t* pool = nullptr; |
Alexis Hetu | c817663 | 2019-01-22 17:01:28 -0500 | [diff] [blame] | 53 | size_t poolSize = 0; |
| 54 | }; |
| 55 | |
| 56 | static inline DescriptorPool* Cast(VkDescriptorPool object) |
| 57 | { |
Alexis Hetu | bd4cf81 | 2019-06-14 15:14:07 -0400 | [diff] [blame] | 58 | return DescriptorPool::Cast(object); |
Alexis Hetu | c817663 | 2019-01-22 17:01:28 -0500 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | } // namespace vk |
| 62 | |
| 63 | #endif // VK_DESCRIPTOR_POOL_HPP_ |