summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Borca <dborca@users.sourceforge.net>2004-07-29 08:25:03 +0000
committerDaniel Borca <dborca@users.sourceforge.net>2004-07-29 08:25:03 +0000
commit10e768c11b5b4e86e17c4b9356dd18cde1a8a61d (patch)
treea38129082674dd82eb2aa2a6fd51c889fa7ef46a
parent0a10abf93e70907b76e90f541ca127e1f1baa3a3 (diff)
fixed conflict between depth & alpha in 16bpp
-rw-r--r--src/mesa/drivers/dri/tdfx/tdfx_render.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/tdfx/tdfx_render.c b/src/mesa/drivers/dri/tdfx/tdfx_render.c
index 1ab38a5662..dc3f7f69dd 100644
--- a/src/mesa/drivers/dri/tdfx/tdfx_render.c
+++ b/src/mesa/drivers/dri/tdfx/tdfx_render.c
@@ -725,7 +725,7 @@ void tdfxEmitHwStateLocked( tdfxContextPtr fxMesa )
fxMesa->Glide.grColorMask( fxMesa->Color.ColorMask[RCOMP] ||
fxMesa->Color.ColorMask[GCOMP] ||
fxMesa->Color.ColorMask[BCOMP],
- fxMesa->Color.ColorMask[ACOMP] );
+ /*fxMesa->Color.ColorMask[ACOMP]*/GL_FALSE/*[dBorca] no-no*/ );
}
fxMesa->dirty &= ~TDFX_UPLOAD_COLOR_MASK;
}