| 167 | } |
| 168 | |
| 169 | void DescriptorPoolVulkan::Reset() |
| 170 | { |
| 171 | if (_handle != VK_NULL_HANDLE) |
| 172 | { |
| 173 | VALIDATE_VULKAN_RESULT(vkResetDescriptorPool(_device->Device, _handle, 0)); |
| 174 | } |
| 175 | _allocatedDescriptorSetsCount = 0; |
| 176 | } |
| 177 | |
| 178 | bool DescriptorPoolVulkan::AllocateDescriptorSets(const VkDescriptorSetAllocateInfo& descriptorSetAllocateInfo, VkDescriptorSet* result) |
| 179 | { |
no test coverage detected