summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2010-09-29 08:31:51 +1000
committerDave Airlie <airlied@redhat.com>2010-09-29 09:19:22 +1000
commit23be883c9b7ca58d2626e665cd238744ae8639b0 (patch)
tree17cc641e7ff7322ce0c13583ea5adf730f521d43
parent17f3b8097d01a63917afaaefccd6eea070271652 (diff)
r600g: add back evergreen name.
-rw-r--r--src/gallium/drivers/r600/r600_state2.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_state2.c b/src/gallium/drivers/r600/r600_state2.c
index bbbf2790cc..9e37af8fec 100644
--- a/src/gallium/drivers/r600/r600_state2.c
+++ b/src/gallium/drivers/r600/r600_state2.c
@@ -343,8 +343,10 @@ static const char* r600_get_name(struct pipe_screen* pscreen)
if (family >= CHIP_R600 && family < CHIP_RV770)
return "R600 (HD2XXX,HD3XXX)";
- else
+ else if (family < CHIP_CEDAR)
return "R700 (HD4XXX)";
+ else
+ return "EVERGREEN";
}
static int r600_get_param(struct pipe_screen* pscreen, enum pipe_cap param)