From 67c02e3522a576d1d739fa130f484ab9a64b5d62 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Tue, 27 Sep 2022 03:19:30 +0300 Subject: [PATCH] vk: Bump compute descriptor pool size to 8k - TODO: This should be dynamic. --- rpcs3/Emu/RSX/VK/VKCompute.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/VK/VKCompute.cpp b/rpcs3/Emu/RSX/VK/VKCompute.cpp index d2079e84f6..feb268fbfd 100644 --- a/rpcs3/Emu/RSX/VK/VKCompute.cpp +++ b/rpcs3/Emu/RSX/VK/VKCompute.cpp @@ -3,7 +3,7 @@ #include "VKRenderPass.h" #include "vkutils/buffer_object.h" -#define VK_MAX_COMPUTE_TASKS 4096 // Max number of jobs per frame +#define VK_MAX_COMPUTE_TASKS 8192 // Max number of jobs per frame namespace vk {