diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2003-11-12 15:27:52 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2003-11-12 15:27:52 +0000 |
commit | 57857ca0925116d6d254fef7e705cfe0b650d77f (patch) | |
tree | 64d4b8ed52bafda589d9abf66a460402f92c97a4 /src/mesa/swrast/s_context.c | |
parent | 80ee4b1e9dbf62f9aa86c3b8531615d14f077dd9 (diff) |
Ville Syrjala's logic op patch
Diffstat (limited to 'src/mesa/swrast/s_context.c')
-rw-r--r-- | src/mesa/swrast/s_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_context.c b/src/mesa/swrast/s_context.c index 09eb614ac5..fb09eb3060 100644 --- a/src/mesa/swrast/s_context.c +++ b/src/mesa/swrast/s_context.c @@ -59,7 +59,7 @@ _swrast_update_rasterflags( GLcontext *ctx ) if (ctx->Visual.rgbMode) { const GLuint colorMask = *((GLuint *) &ctx->Color.ColorMask); if (colorMask != 0xffffffff) RasterMask |= MASKING_BIT; - if (ctx->Color.ColorLogicOpEnabled) RasterMask |= LOGIC_OP_BIT; + if (ctx->Color._LogicOpEnabled) RasterMask |= LOGIC_OP_BIT; if (ctx->Texture._EnabledUnits) RasterMask |= TEXTURE_BIT; } else { |