diff options
author | Brian Paul <[email protected]> | 2000-09-07 15:45:26 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-09-07 15:45:26 +0000 |
commit | c4c639c9a46967678725370cb9824031a068633c (patch) | |
tree | f0008c2a00c6f5f65cc4800b87a560a39551b569 /src/mesa/drivers/glide/fxsetup.c | |
parent | 18f73b622ffa1d1cebea5556b9ebe53a9adc31ac (diff) |
Removed ctx->Driver.LogicOp().
ctx->Driver.Index/ColorMask() now return void.
Removed SWmasking and SWLogicOpEnabled variables.
LogicOps and color/index masking are no longer special-case device
driver functions. The Xlib driver was the only driver that used
them. Things are more uniform now.
Diffstat (limited to 'src/mesa/drivers/glide/fxsetup.c')
-rw-r--r-- | src/mesa/drivers/glide/fxsetup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/glide/fxsetup.c b/src/mesa/drivers/glide/fxsetup.c index f1a56650bde..b6bbb0c85b6 100644 --- a/src/mesa/drivers/glide/fxsetup.c +++ b/src/mesa/drivers/glide/fxsetup.c @@ -1398,9 +1398,9 @@ static void fxSetupDepthTest(GLcontext *ctx) /**************************** Color Mask SetUp **************************/ /************************************************************************/ -GLboolean fxDDColorMask(GLcontext *ctx, - GLboolean r, GLboolean g, - GLboolean b, GLboolean a ) +void fxDDColorMask(GLcontext *ctx, + GLboolean r, GLboolean g, + GLboolean b, GLboolean a ) { fxMesaContext fxMesa=(fxMesaContext)ctx->DriverCtx; fxMesa->new_state |= FX_NEW_COLOR_MASK; |