diff options
author | Brian Paul <[email protected]> | 2000-01-06 09:30:37 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-01-06 09:30:37 +0000 |
commit | 075f184b745ed905fd4155b3104a7313ae90924c (patch) | |
tree | 5f0d0f61edc6cab5c7bcb613452c9b7d19e0d1a1 /src/mesa/drivers/glide | |
parent | dd020f13a6d520b46aefd4453dae6b6edcc427f6 (diff) |
return GL_FALSE in fxDDColorMask
Diffstat (limited to 'src/mesa/drivers/glide')
-rw-r--r-- | src/mesa/drivers/glide/fxsetup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/glide/fxsetup.c b/src/mesa/drivers/glide/fxsetup.c index b27d5c98334..20381c67280 100644 --- a/src/mesa/drivers/glide/fxsetup.c +++ b/src/mesa/drivers/glide/fxsetup.c @@ -1343,7 +1343,7 @@ GLboolean fxDDColorMask(GLcontext *ctx, fxMesa->new_state |= FX_NEW_COLOR_MASK; ctx->Driver.RenderStart = fxSetupFXUnits; (void) r; (void) g; (void) b; (void) a; - return 1; + return GL_FALSE; } static void fxSetupColorMask(GLcontext *ctx) |