radv: use the maximum possible workgroup size for TCS epilogs

It's similar to when the patch control points value is dynamic.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24643>
This commit is contained in:
Samuel Pitoiset 2023-08-18 18:02:52 +02:00 committed by Marge Bot
parent e74c3dbb70
commit 6ad8abf7aa

View file

@ -2647,7 +2647,7 @@ radv_create_tcs_epilog(struct radv_device *device, const struct radv_tcs_epilog_
struct radv_shader_info info = {0};
info.stage = MESA_SHADER_TESS_CTRL;
info.wave_size = device->physical_device->ge_wave_size;
info.workgroup_size = 64;
info.workgroup_size = 256;
radv_declare_tcs_epilog_args(device, key, &args);