mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 21:08:11 +02:00
radv: add missing VEGA20 chip in radv_get_device_name()
Otherwise it returns "AMD RADV unknown". Cc: 19.0 <mesa-stable@lists.freedesktop.org> Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
6bd4cb920e
commit
07745f9494
1 changed files with 1 additions and 0 deletions
|
|
@ -112,6 +112,7 @@ radv_get_device_name(enum radeon_family family, char *name, size_t name_len)
|
|||
case CHIP_VEGAM: chip_string = "AMD RADV VEGA M"; break;
|
||||
case CHIP_VEGA10: chip_string = "AMD RADV VEGA10"; break;
|
||||
case CHIP_VEGA12: chip_string = "AMD RADV VEGA12"; break;
|
||||
case CHIP_VEGA20: chip_string = "AMD RADV VEGA20"; break;
|
||||
case CHIP_RAVEN: chip_string = "AMD RADV RAVEN"; break;
|
||||
case CHIP_RAVEN2: chip_string = "AMD RADV RAVEN2"; break;
|
||||
default: chip_string = "AMD RADV unknown"; break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue