mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 10:20:09 +01:00
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:
parent
e74c3dbb70
commit
6ad8abf7aa
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue