From d4370015544d9e0f3b0526d45c5032db2ebc1562 Mon Sep 17 00:00:00 2001 From: Jean-Philip Desjardins Date: Tue, 23 Jan 2024 10:04:09 -0500 Subject: [PATCH] Allocate more space for mipmap parameters. Fixes issues with Hulk. --- Source/gs/GSH_Vulkan/GSH_VulkanDraw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/gs/GSH_Vulkan/GSH_VulkanDraw.h b/Source/gs/GSH_Vulkan/GSH_VulkanDraw.h index f60969cbbe..03bdbdb4fd 100644 --- a/Source/gs/GSH_Vulkan/GSH_VulkanDraw.h +++ b/Source/gs/GSH_Vulkan/GSH_VulkanDraw.h @@ -113,7 +113,7 @@ namespace GSH_Vulkan DRAW_AREA_SIZE = 2048 }; - static constexpr uint32 MAX_MIPPARAMS_COUNT = 512; + static constexpr uint32 MAX_MIPPARAMS_COUNT = 2048; typedef uint32 DescriptorSetCapsInt;