diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-09-07 15:45:26 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-09-07 15:45:26 +0000 |
commit | c4c639c9a46967678725370cb9824031a068633c (patch) | |
tree | f0008c2a00c6f5f65cc4800b87a560a39551b569 /src/mesa/main/context.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/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 2b29d80f83..5fbe5d0838 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.82 2000/09/05 20:28:06 brianp Exp $ */ +/* $Id: context.c,v 1.83 2000/09/07 15:45:27 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -815,7 +815,6 @@ init_attrib_groups( GLcontext *ctx ) ctx->Color.ColorMask[1] = 0xff; ctx->Color.ColorMask[2] = 0xff; ctx->Color.ColorMask[3] = 0xff; - ctx->Color.SWmasking = GL_FALSE; ctx->Color.ClearIndex = 0; ASSIGN_4V( ctx->Color.ClearColor, 0.0, 0.0, 0.0, 0.0 ); ctx->Color.DrawBuffer = GL_FRONT; @@ -832,7 +831,6 @@ init_attrib_groups( GLcontext *ctx ) ASSIGN_4V( ctx->Color.BlendColor, 0.0, 0.0, 0.0, 0.0 ); ctx->Color.IndexLogicOpEnabled = GL_FALSE; ctx->Color.ColorLogicOpEnabled = GL_FALSE; - ctx->Color.SWLogicOpEnabled = GL_FALSE; ctx->Color.LogicOp = GL_COPY; ctx->Color.DitherFlag = GL_TRUE; ctx->Color.MultiDrawBuffer = GL_FALSE; |