diff options
author | Brett Ernst <brett.ernst@icongroup.com> | 2023-01-18 19:45:26 -0800 |
---|---|---|
committer | Brett Ernst <brett.ernst@icongroup.com> | 2023-01-18 19:45:26 -0800 |
commit | 1ba322e9fff2d259bfe55bc43afc1a934ea269a5 (patch) | |
tree | 5bb2b7a8db91574a3130a408f2a9a0cda8c60158 | |
parent | 324eeaa0cd0014c7ec7b8a3a700fb712a83f3c4a (diff) |
vulkan: increase max stage size to support large buffers
-rw-r--r-- | render/vulkan/renderer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/render/vulkan/renderer.c b/render/vulkan/renderer.c index 564da5d1..f0acd4cd 100644 --- a/render/vulkan/renderer.c +++ b/render/vulkan/renderer.c @@ -38,7 +38,7 @@ // might still be a good idea. static const VkDeviceSize min_stage_size = 1024 * 1024; // 1MB -static const VkDeviceSize max_stage_size = 64 * min_stage_size; // 64MB +static const VkDeviceSize max_stage_size = 256 * min_stage_size; // 256MB static const size_t start_descriptor_pool_size = 256u; static bool default_debug = true; |