From e0d590cafbc83d21c62abe16a9c9dab78d13e64c Mon Sep 17 00:00:00 2001 From: Konstantin Seurer Date: Tue, 28 Dec 2021 20:04:48 +0100 Subject: [PATCH] anv: Fixed maxFragmentCombinedOutputResources Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/vulkan/anv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 1ac75a7b3bd..22e6da5c7ba 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1880,7 +1880,7 @@ void anv_GetPhysicalDeviceProperties( .maxFragmentInputComponents = 116, /* 128 components - (PSIZ, CLIP_DIST0, CLIP_DIST1) */ .maxFragmentOutputAttachments = 8, .maxFragmentDualSrcAttachments = 1, - .maxFragmentCombinedOutputResources = 8, + .maxFragmentCombinedOutputResources = MAX_RTS + max_ssbos + max_images, .maxComputeSharedMemorySize = 64 * 1024, .maxComputeWorkGroupCount = { 65535, 65535, 65535 }, .maxComputeWorkGroupInvocations = max_workgroup_size,