From 0d69555ac6d63ff1f6e718916bb7c7f6ce847eba Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Sun, 1 Feb 2026 02:29:17 -0400 Subject: [PATCH] [vulkan] Adjusting Vk_EXT_custom_border_colors + removal duplicate code --- 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 1d60b3f0e4..5fa062fd68 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp @@ -1213,8 +1213,6 @@ bool Device::GetSuitability(bool requires_swapchain) { if (dyna_state_setting == Settings::ExtendedDynamicState::Static) { LOG_INFO(Render_Vulkan, "Static pipeline mode: All dynamic states disabled"); supports_dynamic_state = false; - features.custom_border_color.customBorderColors = false; - features.custom_border_color.customBorderColorWithoutFormat = false; features.extended_dynamic_state.extendedDynamicState = false; features.extended_dynamic_state2.extendedDynamicState2 = false; features.extended_dynamic_state3.extendedDynamicState3ColorBlendEnable = false; @@ -1225,7 +1223,6 @@ bool Device::GetSuitability(bool requires_swapchain) { } return suitable; - return suitable; } void Device::RemoveUnsuitableExtensions() {