vk_command_pool: Reduce the command pool size from 4096 to 4

This allows drivers to reuse memory more easily and preallocate less.
The optimal number has been measured booting Pokémon Sword.
master
ReinUsesLisp 2021-02-23 19:06:59 +07:00
parent ae876ed047
commit aae399c1a8
1 changed files with 1 additions and 1 deletions

@ -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;