From 3aa4fb867c23aaa8a4e230ef49e205bd72cbab5a Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Sat, 14 Feb 2026 01:07:52 -0400 Subject: [PATCH] [vulkan, tu] Returning timeline semaphores to turnip --- src/video_core/vulkan_common/vulkan_device.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index a42f6e9be9..74fef20a11 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp @@ -924,9 +924,6 @@ bool Device::ShouldBoostClocks() const { } bool Device::HasTimelineSemaphore() const { - if (GetDriverID() == VK_DRIVER_ID_MESA_TURNIP) { - return false; - } return features.timeline_semaphore.timelineSemaphore; }