mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-11 06:28:09 +02:00
radeonsi/gfx10: finish up Navi14, add PCI ID
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
This commit is contained in:
parent
73bde2b029
commit
6229b5a058
2 changed files with 4 additions and 1 deletions
|
|
@ -267,3 +267,5 @@ CHIPSET(0x7319, NAVI10)
|
|||
CHIPSET(0x731A, NAVI10)
|
||||
CHIPSET(0x731B, NAVI10)
|
||||
CHIPSET(0x731F, NAVI10)
|
||||
|
||||
CHIPSET(0x7340, NAVI14)
|
||||
|
|
|
|||
|
|
@ -1122,7 +1122,8 @@ radeonsi_screen_create_impl(struct radeon_winsys *ws,
|
|||
#include "si_debug_options.h"
|
||||
}
|
||||
|
||||
sscreen->use_ngg = sscreen->info.chip_class >= GFX10;
|
||||
sscreen->use_ngg = sscreen->info.chip_class >= GFX10 &&
|
||||
sscreen->info.family != CHIP_NAVI14;
|
||||
sscreen->use_ngg_streamout = false;
|
||||
|
||||
/* Only enable primitive binning on APUs by default. */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue