From edb7991979972d1298b80c56d692fdc9c9e4f602 Mon Sep 17 00:00:00 2001 From: shinra-electric <50119606+shinra-electric@users.noreply.github.com> Date: Sun, 23 Oct 2022 12:37:13 +0200 Subject: [PATCH] Remove MVK Semaphore Support Style options This line is no longer needed as MVK will select the appropriate support style automatically. See https://github.com/KhronosGroup/MoltenVK/pull/1738 --- rpcs3/Emu/RSX/VK/vkutils/device.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/rpcs3/Emu/RSX/VK/vkutils/device.cpp b/rpcs3/Emu/RSX/VK/vkutils/device.cpp index 70b5df91c2..33dd1fe992 100644 --- a/rpcs3/Emu/RSX/VK/vkutils/device.cpp +++ b/rpcs3/Emu/RSX/VK/vkutils/device.cpp @@ -151,7 +151,6 @@ namespace vk CHECK_RESULT_EX(_vkGetMoltenVKConfigurationMVK(VK_NULL_HANDLE, &mvk_config, &mvk_config_size), std::string("Could not get MoltenVK configuration.")); mvk_config.resumeLostDevice = true; - mvk_config.semaphoreSupportStyle = MVKVkSemaphoreSupportStyle::MVK_CONFIG_VK_SEMAPHORE_SUPPORT_STYLE_SINGLE_QUEUE; mvk_config.fastMathEnabled = !(g_cfg.video.disable_msl_fast_math.get()); CHECK_RESULT_EX(_vkSetMoltenVKConfigurationMVK(VK_NULL_HANDLE, &mvk_config, &mvk_config_size), std::string("Could not set MoltenVK configuration."));