nvk: Don't set filterMinmax properties prior to Maxwell B

We disallow the feature but the CTS still expects the properties to be
false as well.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34127>
This commit is contained in:
Faith Ekstrand
2025-03-12 15:55:54 -05:00
committed by Marge Bot
parent 43d35bb63a
commit 35cd6a1d99
+2 -2
View File
@@ -924,8 +924,8 @@ nvk_get_device_properties(const struct nvk_instance *instance,
.maxDescriptorSetUpdateAfterBindSampledImages = NVK_MAX_DESCRIPTORS,
.maxDescriptorSetUpdateAfterBindStorageImages = NVK_MAX_DESCRIPTORS,
.maxDescriptorSetUpdateAfterBindInputAttachments = NVK_MAX_DESCRIPTORS,
.filterMinmaxSingleComponentFormats = true,
.filterMinmaxImageComponentMapping = true,
.filterMinmaxSingleComponentFormats = info->cls_eng3d >= MAXWELL_B,
.filterMinmaxImageComponentMapping = info->cls_eng3d >= MAXWELL_B,
.maxTimelineSemaphoreValueDifference = UINT64_MAX,
.framebufferIntegerColorSampleCounts = sample_counts,