radv: rename VERT_GRP_SIZE to VERTS_PER_SUBGRP on GFX11

Same bitfield but it has been renamed.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16557>
This commit is contained in:
Samuel Pitoiset 2022-05-10 10:17:50 +02:00 committed by Marge Bot
parent e1811af75d
commit c5d8ef97fa
1 changed files with 1 additions and 1 deletions

View File

@ -5788,7 +5788,7 @@ radv_pipeline_emit_hw_ngg(struct radeon_cmdbuf *ctx_cs, struct radeon_cmdbuf *cs
if (pdevice->rad_info.gfx_level >= GFX11) {
ge_cntl = S_03096C_PRIMS_PER_SUBGRP(ngg_state->max_gsprims) |
S_03096C_VERT_GRP_SIZE(ngg_state->enable_vertex_grouping
S_03096C_VERTS_PER_SUBGRP(ngg_state->enable_vertex_grouping
? ngg_state->hw_max_esverts
: 256) | /* 256 = disable vertex grouping */
S_03096C_BREAK_PRIMGRP_AT_EOI(break_wave_at_eoi) |