diff options
author | Michel Dänzer <[email protected]> | 2004-01-24 12:35:13 +0000 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2004-01-24 12:35:13 +0000 |
commit | 78bb0803cf722ad5273fc495791eb573bf8b4d21 (patch) | |
tree | b9f81bddcf53d483366cd684d4978f37d6bd6114 /src/mesa/drivers/dri/r200 | |
parent | 4d859f73fce9918381c65da55f046a7c605c9e65 (diff) |
Fix hardware ROP state handling (Roland Scheidegger)
Diffstat (limited to 'src/mesa/drivers/dri/r200')
-rw-r--r-- | src/mesa/drivers/dri/r200/r200_state.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_state.c b/src/mesa/drivers/dri/r200/r200_state.c index 94d5163599c..2326c75dbdc 100644 --- a/src/mesa/drivers/dri/r200/r200_state.c +++ b/src/mesa/drivers/dri/r200/r200_state.c @@ -137,7 +137,7 @@ static void r200BlendEquation( GLcontext *ctx, GLenum mode ) R200_STATECHANGE( rmesa, ctx ); rmesa->hw.ctx.cmd[CTX_RB3D_BLENDCNTL] = b; - if ( ctx->Color.ColorLogicOpEnabled ) { + if ( ctx->Color._LogicOpEnabled ) { rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] |= R200_ROP_ENABLE; } else { rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] &= ~R200_ROP_ENABLE; @@ -1706,7 +1706,7 @@ static void r200Enable( GLcontext *ctx, GLenum cap, GLboolean state ) } else { rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] &= ~R200_ALPHA_BLEND_ENABLE; } - if ( ctx->Color.ColorLogicOpEnabled ) { + if ( ctx->Color._LogicOpEnabled ) { rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] |= R200_ROP_ENABLE; } else { rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] &= ~R200_ROP_ENABLE; @@ -1829,7 +1829,7 @@ static void r200Enable( GLcontext *ctx, GLenum cap, GLboolean state ) case GL_COLOR_LOGIC_OP: R200_STATECHANGE( rmesa, ctx ); - if ( state ) { + if ( ctx->Color._LogicOpEnabled ) { rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] |= R200_ROP_ENABLE; } else { rmesa->hw.ctx.cmd[CTX_RB3D_CNTL] &= ~R200_ROP_ENABLE; |