From 296c931d55d7ab8bfc5dc890aa2def2981d98586 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Fri, 23 Aug 2024 03:25:17 +0300 Subject: [PATCH] Fix v3dv workaround --- rpcs3/Emu/RSX/VK/vkutils/device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/VK/vkutils/device.cpp b/rpcs3/Emu/RSX/VK/vkutils/device.cpp index a17808e98f..c3a96ba237 100644 --- a/rpcs3/Emu/RSX/VK/vkutils/device.cpp +++ b/rpcs3/Emu/RSX/VK/vkutils/device.cpp @@ -613,7 +613,7 @@ namespace vk enabled_features.logicOp = VK_FALSE; } - if (!pgpu->features.textureCompressionBC && get_driver_vendor() == driver_vendor::V3DV) + if (!pgpu->features.textureCompressionBC && pgpu->get_driver_vendor() == driver_vendor::V3DV) { // v3dv supports BC1-BC3 which is all we require, support is reported as false since not all formats are supported rsx_log.error("Your GPU running on the V3DV driver does not support full texture block compression. Graphics may not render correctly.");