From f00031d421d2769442fc7122ccb10d6cc824de8a Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Sun, 9 Nov 2025 02:23:53 -0400 Subject: [PATCH] TEST: Enabling TimelineSemaphores for QCOM and Turnip --- src/video_core/vulkan_common/vulkan_device.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index 0f75f0b6cf..e70ce1fcff 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp @@ -1134,13 +1134,6 @@ bool Device::ShouldBoostClocks() const { } bool Device::HasTimelineSemaphore() const { - if (GetDriverID() == VK_DRIVER_ID_QUALCOMM_PROPRIETARY || - GetDriverID() == VK_DRIVER_ID_MESA_TURNIP) { - // Timeline semaphores do not work properly on all Qualcomm drivers. - // They generally work properly with Turnip drivers, but are problematic on some devices - // (e.g. ZTE handsets with Snapdragon 870). - return false; - } return features.timeline_semaphore.timelineSemaphore; }