diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2020-01-03 21:34:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-03 21:34:30 +0100 |
commit | 6e347d8d1b797ef8e1bc40aba32163a9a7a66899 (patch) | |
tree | 02f7f4b98301329dbd3d8b4aed3713b9b28bfb79 /src/video_core/renderer_vulkan | |
parent | vk_descriptor_pool: Initial implementation (diff) | |
download | yuzu-6e347d8d1b797ef8e1bc40aba32163a9a7a66899.tar yuzu-6e347d8d1b797ef8e1bc40aba32163a9a7a66899.tar.gz yuzu-6e347d8d1b797ef8e1bc40aba32163a9a7a66899.tar.bz2 yuzu-6e347d8d1b797ef8e1bc40aba32163a9a7a66899.tar.lz yuzu-6e347d8d1b797ef8e1bc40aba32163a9a7a66899.tar.xz yuzu-6e347d8d1b797ef8e1bc40aba32163a9a7a66899.tar.zst yuzu-6e347d8d1b797ef8e1bc40aba32163a9a7a66899.zip |
Diffstat (limited to 'src/video_core/renderer_vulkan')
-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 @@ namespace Vulkan { // Prefer small grow rates to avoid saturating the descriptor pool with barely used pipelines. -static constexpr std::size_t SETS_GROW_RATE = 0x20; +constexpr std::size_t SETS_GROW_RATE = 0x20; DescriptorAllocator::DescriptorAllocator(VKDescriptorPool& descriptor_pool, vk::DescriptorSetLayout layout) |