Merge pull request #5989 from ReinUsesLisp/cmdpool

vk_command_pool: Reduce the command pool size from 4096 to 4
This commit is contained in:
bunnei 2021-03-04 11:07:31 -08:00 committed by GitHub
commit b8b5891585
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@
namespace Vulkan {
constexpr size_t COMMAND_BUFFER_POOL_SIZE = 0x1000;
constexpr size_t COMMAND_BUFFER_POOL_SIZE = 4;
struct CommandPool::Pool {
vk::CommandPool handle;