From 564b06198147abec0074b142b751d5219592409b Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Wed, 8 Apr 2026 22:32:54 +0200 Subject: [PATCH] hk: Increase maxFragmentCombinedOutputResources to HK_MAX_DESCRIPTORS Backport-to: 26.0 Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/15249 for hk Signed-off-by: Janne Grunau Part-of: --- src/asahi/vulkan/hk_physical_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asahi/vulkan/hk_physical_device.c b/src/asahi/vulkan/hk_physical_device.c index fd1a0e7ed92..cf4836f5c23 100644 --- a/src/asahi/vulkan/hk_physical_device.c +++ b/src/asahi/vulkan/hk_physical_device.c @@ -739,7 +739,7 @@ hk_get_device_properties(const struct agx_device *dev, .maxFragmentInputComponents = max_vgt_output_components, .maxFragmentOutputAttachments = HK_MAX_RTS, .maxFragmentDualSrcAttachments = 1, - .maxFragmentCombinedOutputResources = 16, + .maxFragmentCombinedOutputResources = HK_MAX_DESCRIPTORS, .maxComputeSharedMemorySize = HK_MAX_SHARED_SIZE, .maxComputeWorkGroupCount = {0x7fffffff, 65535, 65535}, .maxComputeWorkGroupInvocations = 1024,