mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-23 20:20:38 +02:00
r600g: Mention AMD in the renderer string.
This commit is contained in:
parent
6bf0ac0916
commit
9f06411645
1 changed files with 18 additions and 18 deletions
|
|
@ -221,24 +221,24 @@ static const char* r600_get_vendor(struct pipe_screen* pscreen)
|
|||
static const char *r600_get_family_name(enum radeon_family family)
|
||||
{
|
||||
switch(family) {
|
||||
case CHIP_R600: return "R600";
|
||||
case CHIP_RV610: return "RV610";
|
||||
case CHIP_RV630: return "RV630";
|
||||
case CHIP_RV670: return "RV670";
|
||||
case CHIP_RV620: return "RV620";
|
||||
case CHIP_RV635: return "RV635";
|
||||
case CHIP_RS780: return "RS780";
|
||||
case CHIP_RS880: return "RS880";
|
||||
case CHIP_RV770: return "RV770";
|
||||
case CHIP_RV730: return "RV730";
|
||||
case CHIP_RV710: return "RV710";
|
||||
case CHIP_RV740: return "RV740";
|
||||
case CHIP_CEDAR: return "CEDAR";
|
||||
case CHIP_REDWOOD: return "REDWOOD";
|
||||
case CHIP_JUNIPER: return "JUNIPER";
|
||||
case CHIP_CYPRESS: return "CYPRESS";
|
||||
case CHIP_HEMLOCK: return "HEMLOCK";
|
||||
default: return "unknown";
|
||||
case CHIP_R600: return "AMD R600";
|
||||
case CHIP_RV610: return "AMD RV610";
|
||||
case CHIP_RV630: return "AMD RV630";
|
||||
case CHIP_RV670: return "AMD RV670";
|
||||
case CHIP_RV620: return "AMD RV620";
|
||||
case CHIP_RV635: return "AMD RV635";
|
||||
case CHIP_RS780: return "AMD RS780";
|
||||
case CHIP_RS880: return "AMD RS880";
|
||||
case CHIP_RV770: return "AMD RV770";
|
||||
case CHIP_RV730: return "AMD RV730";
|
||||
case CHIP_RV710: return "AMD RV710";
|
||||
case CHIP_RV740: return "AMD RV740";
|
||||
case CHIP_CEDAR: return "AMD CEDAR";
|
||||
case CHIP_REDWOOD: return "AMD REDWOOD";
|
||||
case CHIP_JUNIPER: return "AMD JUNIPER";
|
||||
case CHIP_CYPRESS: return "AMD CYPRESS";
|
||||
case CHIP_HEMLOCK: return "AMD HEMLOCK";
|
||||
default: return "AMD unknown";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue