mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 23:10:11 +01:00
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:
parent
cb45120556
commit
1756930a79
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue