From 142eeb0b8a3baf3421bc788ec7cfb447b99021d9 Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Sat, 18 Jul 2026 02:20:32 -0400 Subject: [PATCH] fix build --- src/video_core/vulkan_common/vulkan_device.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index 7e36206fa8..6bf4d589ed 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp @@ -522,9 +522,8 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR features.workgroup_memory_explicit_layout, VK_KHR_WORKGROUP_MEMORY_EXPLICIT_LAYOUT_EXTENSION_NAME); LOG_WARNING(Render_Vulkan, "Qualcomm drivers have broken conservative rasterization."); - RemoveExtensionFeature(extensions.conservative_rasterization, - features.conservative_rasterization, - VK_EXT_CONSERVATIVE_RASTERIZATION_EXTENSION_NAME); + RemoveExtension(extensions.conservative_rasterization, + VK_EXT_CONSERVATIVE_RASTERIZATION_EXTENSION_NAME); LOG_WARNING(Render_Vulkan, "Qualcomm drivers have broken depth clip control."); RemoveExtensionFeature(extensions.depth_clip_control, features.depth_clip_control, VK_EXT_DEPTH_CLIP_CONTROL_EXTENSION_NAME);