diff options
| -rw-r--r-- | src/video_core/renderer_vulkan/vk_descriptor_pool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_vulkan/vk_descriptor_pool.cpp b/src/video_core/renderer_vulkan/vk_descriptor_pool.cpp index 7e6e4ccb7..cc7c281a0 100644 --- a/src/video_core/renderer_vulkan/vk_descriptor_pool.cpp +++ b/src/video_core/renderer_vulkan/vk_descriptor_pool.cpp | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | namespace Vulkan { | 14 | namespace Vulkan { |
| 15 | 15 | ||
| 16 | // Prefer small grow rates to avoid saturating the descriptor pool with barely used pipelines. | 16 | // Prefer small grow rates to avoid saturating the descriptor pool with barely used pipelines. |
| 17 | static constexpr std::size_t SETS_GROW_RATE = 0x20; | 17 | constexpr std::size_t SETS_GROW_RATE = 0x20; |
| 18 | 18 | ||
| 19 | DescriptorAllocator::DescriptorAllocator(VKDescriptorPool& descriptor_pool, | 19 | DescriptorAllocator::DescriptorAllocator(VKDescriptorPool& descriptor_pool, |
| 20 | vk::DescriptorSetLayout layout) | 20 | vk::DescriptorSetLayout layout) |