From 20a775ed08d86c985a9c49fbe79b20223ead4a73 Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Sun, 16 Aug 2026 19:34:45 -0400 Subject: [PATCH] Another meow --- src/video_core/vulkan_common/vulkan_device.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h index 76100b5067..45dc6587f2 100644 --- a/src/video_core/vulkan_common/vulkan_device.h +++ b/src/video_core/vulkan_common/vulkan_device.h @@ -707,12 +707,11 @@ FN_MAX_LIMIT_LIST return features.transform_feedback.geometryStreams; } - /// Returns true if custom border colors stay defined under non-identity view swizzles. + /// Returns true if custom border colors can be created without a format. bool IsCustomBorderColorUsable() const { return extensions.custom_border_color && features.custom_border_color.customBorderColors && - features.custom_border_color.customBorderColorWithoutFormat && - extensions.border_color_swizzle; + features.custom_border_color.customBorderColorWithoutFormat; } /// Returns true if the device supports VK_EXT_color_write_enable.