diff options
author | Daniel Borca <[email protected]> | 2003-11-03 12:01:03 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2003-11-03 12:01:03 +0000 |
commit | 313e12e05843dadb12a3a53d2dd161478c9b3202 (patch) | |
tree | 83cef18b4fcf383803b3a60d3902832e146deb7d /src/mesa/drivers/glide/fxglidew.c | |
parent | 7093114285bb315070af572ff4aecc204c400ef4 (diff) |
Voodoo2 happiness
Diffstat (limited to 'src/mesa/drivers/glide/fxglidew.c')
-rw-r--r-- | src/mesa/drivers/glide/fxglidew.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mesa/drivers/glide/fxglidew.c b/src/mesa/drivers/glide/fxglidew.c index ff4454d9a8f..76df0286937 100644 --- a/src/mesa/drivers/glide/fxglidew.c +++ b/src/mesa/drivers/glide/fxglidew.c @@ -194,7 +194,9 @@ FX_grSstQueryHardware(GrHwConfiguration * config) grSstSelect(i); extension = grGetString(GR_HARDWARE); - if (strstr(extension, "Voodoo Banshee")) { + if (strstr(extension, "Voodoo2")) { + config->SSTs[i].type = GR_SSTTYPE_Voodoo2; + } else if (strstr(extension, "Voodoo Banshee")) { config->SSTs[i].type = GR_SSTTYPE_Banshee; } else if (strstr(extension, "Voodoo3")) { config->SSTs[i].type = GR_SSTTYPE_Voodoo3; @@ -202,8 +204,8 @@ FX_grSstQueryHardware(GrHwConfiguration * config) config->SSTs[i].type = GR_SSTTYPE_Voodoo4; } else if (strstr(extension, "Voodoo5")) { config->SSTs[i].type = GR_SSTTYPE_Voodoo5; - } else { /* Voodoo1,2,rush */ - /* ZZZ TO DO: Need to distinguish whether we have V1 or V2 or Rush. */ + } else { /* Voodoo1,rush */ + /* ZZZ TO DO: Need to distinguish whether we have V1 or Rush. */ config->SSTs[i].type = GR_SSTTYPE_VOODOO; } |