VideoBackends:Vulkan: Raise number of command buffers

Avoid waiting for earlier submissions when we flush more often.
The vertex manager will flush more often if the game accesses the EFB
on the CPU, to give the GPU a head start.
This commit is contained in:
Robin Kertels 2022-10-01 01:24:54 +02:00
parent fba7d35f94
commit e5fb9c9adf
No known key found for this signature in database
GPG Key ID: 3824904F14D40757
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
namespace Vulkan
{
// Number of command buffers.
constexpr size_t NUM_COMMAND_BUFFERS = 2;
constexpr size_t NUM_COMMAND_BUFFERS = 8;
// Number of frames in flight, will be used to decide how many descriptor pools are used
constexpr size_t NUM_FRAMES_IN_FLIGHT = 2;