mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 13:48:06 +02:00
radv/gfx10: initialize GE_{MAX,MIN}_VTX_INDX/INDX_OFFSET
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
12a42c2d9f
commit
b1b60a92b1
1 changed files with 5 additions and 1 deletions
|
|
@ -237,7 +237,11 @@ si_emit_graphics(struct radv_physical_device *physical_device,
|
|||
S_02800C_FORCE_HIS_ENABLE0(V_02800C_FORCE_DISABLE) |
|
||||
S_02800C_FORCE_HIS_ENABLE1(V_02800C_FORCE_DISABLE));
|
||||
|
||||
if (physical_device->rad_info.chip_class >= GFX9) {
|
||||
if (physical_device->rad_info.chip_class >= GFX10) {
|
||||
radeon_set_uconfig_reg(cs, R_030964_GE_MAX_VTX_INDX, ~0);
|
||||
radeon_set_uconfig_reg(cs, R_030924_GE_MIN_VTX_INDX, 0);
|
||||
radeon_set_uconfig_reg(cs, R_030928_GE_INDX_OFFSET, 0);
|
||||
} else if (physical_device->rad_info.chip_class >= GFX9) {
|
||||
radeon_set_uconfig_reg(cs, R_030920_VGT_MAX_VTX_INDX, ~0);
|
||||
radeon_set_uconfig_reg(cs, R_030924_VGT_MIN_VTX_INDX, 0);
|
||||
radeon_set_uconfig_reg(cs, R_030928_VGT_INDX_OFFSET, 0);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue