summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Rodrigo Locatti2020-01-03 17:34:30 -0300
committerGravatar GitHub2020-01-03 17:34:30 -0300
commit6e347d8d1b797ef8e1bc40aba32163a9a7a66899 (patch)
tree02f7f4b98301329dbd3d8b4aed3713b9b28bfb79 /src
parentvk_descriptor_pool: Initial implementation (diff)
downloadyuzu-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.cpp2
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 @@
14namespace Vulkan { 14namespace 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.
17static constexpr std::size_t SETS_GROW_RATE = 0x20; 17constexpr std::size_t SETS_GROW_RATE = 0x20;
18 18
19DescriptorAllocator::DescriptorAllocator(VKDescriptorPool& descriptor_pool, 19DescriptorAllocator::DescriptorAllocator(VKDescriptorPool& descriptor_pool,
20 vk::DescriptorSetLayout layout) 20 vk::DescriptorSetLayout layout)