diff options
author | Brian Paul <[email protected]> | 2006-11-02 17:51:04 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-11-02 17:51:04 +0000 |
commit | 7a9c7c1133d5cf17d032c8568e8f040a7c171a72 (patch) | |
tree | 080a93c61e25d8003e98de5c87bb3cea744c048b /src/mesa/drivers/dri/r300 | |
parent | abc73d9cba655479af493fabd13a488e5f7951eb (diff) |
Use RGBA_LOGICOP_ENABLED() instead of ctx->Color._LogicOpEnabled since we often
need to check for this condition before the later field has been computed.
Fixes logicop bug #8860.
Diffstat (limited to 'src/mesa/drivers/dri/r300')
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_state.c b/src/mesa/drivers/dri/r300/r300_state.c index 9fd769f3217..b06336457de 100644 --- a/src/mesa/drivers/dri/r300/r300_state.c +++ b/src/mesa/drivers/dri/r300/r300_state.c @@ -206,7 +206,7 @@ static void r300_set_blend_state(GLcontext * ctx) (R300_BLEND_GL_ZERO << R300_DST_BLEND_SHIFT); int eqnA = R300_COMB_FCN_ADD_CLAMP; - if (ctx->Color._LogicOpEnabled || !ctx->Color.BlendEnabled) { + if (RGBA_LOGICOP_ENABLED(ctx) || !ctx->Color.BlendEnabled) { r300_set_blend_cntl(r300, func, eqn, 0, func, eqn); |