mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 11:38:05 +02:00
radv: Use correct primgrp size for gfx11.
From radeonsi, found by inspection. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19222>
This commit is contained in:
parent
9d782e5294
commit
514a9b3b75
1 changed files with 1 additions and 1 deletions
|
|
@ -5022,7 +5022,7 @@ radv_pipeline_emit_hw_ngg(struct radeon_cmdbuf *ctx_cs, struct radeon_cmdbuf *cs
|
|||
ge_cntl = S_03096C_PRIMS_PER_SUBGRP(ngg_state->max_gsprims) |
|
||||
S_03096C_VERTS_PER_SUBGRP(ngg_state->hw_max_esverts) |
|
||||
S_03096C_BREAK_PRIMGRP_AT_EOI(break_wave_at_eoi) |
|
||||
S_03096C_PRIM_GRP_SIZE_GFX11(256);
|
||||
S_03096C_PRIM_GRP_SIZE_GFX11(252);
|
||||
} else {
|
||||
ge_cntl = S_03096C_PRIM_GRP_SIZE_GFX10(ngg_state->max_gsprims) |
|
||||
S_03096C_VERT_GRP_SIZE(ngg_state->hw_max_esverts) |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue