From 751dd8546e0641e36623a8aabf38969e21c97577 Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Mon, 3 Aug 2026 18:38:53 -0400 Subject: [PATCH] Smol change --- src/video_core/vulkan_common/vulkan_device.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/video_core/vulkan_common/vulkan_device.h b/src/video_core/vulkan_common/vulkan_device.h index 5c618784e8..6820ee31da 100644 --- a/src/video_core/vulkan_common/vulkan_device.h +++ b/src/video_core/vulkan_common/vulkan_device.h @@ -416,7 +416,8 @@ FN_MAX_LIMIT_LIST /// Returns true if descriptor aliasing is natively supported. bool IsDescriptorAliasingSupported() const { - return GetDriverID() != VK_DRIVER_ID_QUALCOMM_PROPRIETARY; + return features.descriptor_indexing.descriptorBindingPartiallyBound && + features.descriptor_indexing.descriptorBindingVariableDescriptorCount; } bool IsSampledImageArrayNonUniformIndexingSupported() const {