From 13f98d8658e041b6761047db0ccafb585cfbd823 Mon Sep 17 00:00:00 2001 From: Mary Guillemard Date: Thu, 9 Apr 2026 12:01:15 +0200 Subject: [PATCH] nvk: Adjust maxFragmentCombinedOutputResources to match max descriptors limit This was set to the lowest allowed value by spec but it should really be matching the max descriptors limit. Cc: mesa-stable Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/15249 for NVK Signed-off-by: Mary Guillemard Reviewed-by: Mel Henning 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 cc53f018192..1a610c5e4c2 100644 --- a/src/nouveau/vulkan/nvk_physical_device.c +++ b/src/nouveau/vulkan/nvk_physical_device.c @@ -852,7 +852,7 @@ nvk_get_device_properties(const struct nvk_instance *instance, .maxFragmentInputComponents = 128, .maxFragmentOutputAttachments = NVK_MAX_RTS, .maxFragmentDualSrcAttachments = 1, - .maxFragmentCombinedOutputResources = 16, + .maxFragmentCombinedOutputResources = NVK_MAX_RTS + NVK_MAX_DESCRIPTORS, /* Nvidia limits this to 48kB for consistency reasons, we could lift the * limit if we wanted to. */