From 554e1c2000746c64a25920f2c4db9d814e11f52a Mon Sep 17 00:00:00 2001 From: Georg Lehmann Date: Mon, 27 Dec 2021 14:36:27 +0100 Subject: [PATCH] radv: Increase maxFragmentCombinedOutputResources. This also includes storage images and storage buffers, not just color attachments. Signed-off-by: Georg Lehmann Reviewed-by: Samuel Pitoiset Part-of: --- src/amd/vulkan/radv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 8994d3c..099337b 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -1774,7 +1774,7 @@ radv_GetPhysicalDeviceProperties(VkPhysicalDevice physicalDevice, .maxFragmentInputComponents = 128, .maxFragmentOutputAttachments = 8, .maxFragmentDualSrcAttachments = 1, - .maxFragmentCombinedOutputResources = 8, + .maxFragmentCombinedOutputResources = max_descriptor_set_size, .maxComputeSharedMemorySize = pdevice->rad_info.chip_class >= GFX7 ? 65536 : 32768, .maxComputeWorkGroupCount = {65535, 65535, 65535}, .maxComputeWorkGroupInvocations = 1024, -- 2.7.4