radv: increase maxTaskOutputCount to 65535

This is the minimum required by the spec.

Fixes dEQP-VK.api.info.vulkan1p2_limits_validation.nv_mesh_shader

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14446>
This commit is contained in:
Rhys Perry 2022-01-07 11:17:01 +00:00 committed by Marge Bot
parent cb45120556
commit 1756930a79

View file

@ -2328,7 +2328,7 @@ radv_GetPhysicalDeviceProperties2(VkPhysicalDevice physicalDevice,
properties->maxTaskWorkGroupSize[0] = 1024;
properties->maxTaskWorkGroupSize[1] = 1024;
properties->maxTaskWorkGroupSize[2] = 1024;
properties->maxTaskOutputCount = 1024;
properties->maxTaskOutputCount = 65535;
/* Mesh shader limitations:
* Same as NGG, because MS are compiled to NGG.