[vulkan] Adjusting Vk_EXT_custom_border_colors + removal duplicate code

This commit is contained in:
CamilleLaVey 2026-02-01 02:29:17 -04:00
parent 3a70dddf80
commit 0d69555ac6
1 changed files with 0 additions and 3 deletions

View File

@ -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() {