summaryrefslogtreecommitdiff
path: root/src/mesa/drivers
diff options
context:
space:
mode:
authorDaniel Borca <dborca@users.sourceforge.net>2004-03-08 07:52:18 +0000
committerDaniel Borca <dborca@users.sourceforge.net>2004-03-08 07:52:18 +0000
commit0c19008f099861923d936cad00b51b520f38737d (patch)
treee7382f7234779dfb01f2f660c74ca8a7a2ceeb72 /src/mesa/drivers
parent446d8d0b86d05089c56d53e9887cdf03574a1441 (diff)
Voodoo Rush fixes
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r--src/mesa/drivers/glide/fxapi.c1
-rw-r--r--src/mesa/drivers/glide/fxdd.c14
-rw-r--r--src/mesa/drivers/glide/fxglidew.c7
3 files changed, 17 insertions, 5 deletions
diff --git a/src/mesa/drivers/glide/fxapi.c b/src/mesa/drivers/glide/fxapi.c
index 930534fcd8..20cf7240de 100644
--- a/src/mesa/drivers/glide/fxapi.c
+++ b/src/mesa/drivers/glide/fxapi.c
@@ -397,6 +397,7 @@ fxMesaCreateContext(GLuint win,
sliaa = 0;
switch (voodoo->type) {
case GR_SSTTYPE_VOODOO:
+ case GR_SSTTYPE_SST96:
case GR_SSTTYPE_Banshee:
fxMesa->bgrOrder = GL_TRUE;
fxMesa->snapVertices = GL_TRUE;
diff --git a/src/mesa/drivers/glide/fxdd.c b/src/mesa/drivers/glide/fxdd.c
index d2fb55d570..55e2e87d0d 100644
--- a/src/mesa/drivers/glide/fxdd.c
+++ b/src/mesa/drivers/glide/fxdd.c
@@ -1331,8 +1331,18 @@ fxDDInitFxMesaContext(fxMesaContext fxMesa)
return 0;
}
- if (fxMesa->haveZBuffer)
- grDepthBufferMode(GR_DEPTHBUFFER_ZBUFFER);
+ /* [dBorca] Hack alert:
+ * Unlike the rest of the Voodoo family, the Rush
+ * doesn't support ZBUFFER with WBUFFER-like depth functions!
+ * I guess we could use WBUFFER, which is better, but we can't
+ * because the depth span functions would need to translate
+ * depth values to 4.12 floating point...
+ */
+ if (fxMesa->haveZBuffer) {
+ grDepthBufferMode((fxMesa->type == GR_SSTTYPE_SST96)
+ ? GR_DEPTHBUFFER_WBUFFER
+ : GR_DEPTHBUFFER_ZBUFFER);
+ }
if (!fxMesa->bgrOrder) {
grLfbWriteColorFormat(GR_COLORFORMAT_ABGR);
diff --git a/src/mesa/drivers/glide/fxglidew.c b/src/mesa/drivers/glide/fxglidew.c
index e386b0d825..6af9895f1b 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, "Voodoo2")) {
+ if (strstr(extension, "Rush")) {
+ config->SSTs[i].type = GR_SSTTYPE_SST96;
+ } else if (strstr(extension, "Voodoo2")) {
config->SSTs[i].type = GR_SSTTYPE_Voodoo2;
} else if (strstr(extension, "Voodoo Banshee")) {
config->SSTs[i].type = GR_SSTTYPE_Banshee;
@@ -204,8 +206,7 @@ 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,rush */
- /* ZZZ TO DO: Need to distinguish whether we have V1 or Rush. */
+ } else {
config->SSTs[i].type = GR_SSTTYPE_VOODOO;
}