From f628795b3f45fe8eb0830aed57cf9098bf9b1a37 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Mon, 23 Jan 2023 19:41:44 +1000 Subject: [PATCH] GS/Vulkan: Don't apply TFX state on utility draw --- pcsx2/GS/Renderers/Vulkan/GSDeviceVK.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/GS/Renderers/Vulkan/GSDeviceVK.cpp b/pcsx2/GS/Renderers/Vulkan/GSDeviceVK.cpp index 3323870992..b8383c605e 100644 --- a/pcsx2/GS/Renderers/Vulkan/GSDeviceVK.cpp +++ b/pcsx2/GS/Renderers/Vulkan/GSDeviceVK.cpp @@ -2737,7 +2737,7 @@ bool GSDeviceVK::ApplyUtilityState(bool already_execed) } ExecuteCommandBufferAndRestartRenderPass(false, "Ran out of utility descriptors"); - return ApplyTFXState(true); + return ApplyUtilityState(true); } Vulkan::DescriptorSetUpdateBuilder dsub;