From 81986a85236024389ee3e99618f2be0ef98b60ca Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Wed, 12 Mar 2025 16:17:25 -0500 Subject: [PATCH] nvk: Disable sparse buffer binding prior to Maxwell B Part-of: --- src/nouveau/vulkan/nvk_physical_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nouveau/vulkan/nvk_physical_device.c b/src/nouveau/vulkan/nvk_physical_device.c index f60a0cfe2dc..45bc0778160 100644 --- a/src/nouveau/vulkan/nvk_physical_device.c +++ b/src/nouveau/vulkan/nvk_physical_device.c @@ -348,7 +348,7 @@ nvk_get_device_features(const struct nv_device_info *info, .shaderInt16 = true, .shaderResourceResidency = info->cls_eng3d >= VOLTA_A, .shaderResourceMinLod = info->cls_eng3d >= VOLTA_A, - .sparseBinding = true, + .sparseBinding = info->cls_eng3d >= MAXWELL_B, .sparseResidency2Samples = info->cls_eng3d >= MAXWELL_B, .sparseResidency4Samples = info->cls_eng3d >= MAXWELL_B, .sparseResidency8Samples = info->cls_eng3d >= MAXWELL_B,