diff options
| author | 2020-01-03 17:34:30 -0300 | |
|---|---|---|
| committer | 2020-01-03 17:34:30 -0300 | |
| commit | 6e347d8d1b797ef8e1bc40aba32163a9a7a66899 (patch) | |
| tree | 02f7f4b98301329dbd3d8b4aed3713b9b28bfb79 /src | |
| parent | vk_descriptor_pool: Initial implementation (diff) | |
| download | yuzu-6e347d8d1b797ef8e1bc40aba32163a9a7a66899.tar.gz yuzu-6e347d8d1b797ef8e1bc40aba32163a9a7a66899.tar.xz yuzu-6e347d8d1b797ef8e1bc40aba32163a9a7a66899.zip | |
Update src/video_core/renderer_vulkan/vk_descriptor_pool.cpp
Co-Authored-By: Mat M. <mathew1800@gmail.com>
Diffstat (limited to 'src')
| -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) |