diff options
author | Daniel Borca <[email protected]> | 2004-07-29 08:25:03 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2004-07-29 08:25:03 +0000 |
commit | 10e768c11b5b4e86e17c4b9356dd18cde1a8a61d (patch) | |
tree | a38129082674dd82eb2aa2a6fd51c889fa7ef46a /src/mesa/drivers/dri/tdfx | |
parent | 0a10abf93e70907b76e90f541ca127e1f1baa3a3 (diff) |
fixed conflict between depth & alpha in 16bpp
Diffstat (limited to 'src/mesa/drivers/dri/tdfx')
-rw-r--r-- | src/mesa/drivers/dri/tdfx/tdfx_render.c | 2 |
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 1ab38a56625..dc3f7f69dda 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; } |