diff options
author | Brian Paul <[email protected]> | 2006-11-02 17:49:47 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-11-02 17:49:47 +0000 |
commit | abc73d9cba655479af493fabd13a488e5f7951eb (patch) | |
tree | c9960533183c15c91cd59f1b277913cd3dc08d8d /src/mesa/main/state.c | |
parent | 12fe1b3a580c267ccef53a5dbfd5183eaac1489b (diff) |
new RGBA_LOGICOP_ENABLED() macro
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r-- | src/mesa/main/state.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index 1ced2a081e5..de513926de5 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -983,9 +983,7 @@ update_color(GLcontext *ctx) /* This is needed to support 1.1's RGB logic ops AND * 1.0's blending logicops. */ - ctx->Color._LogicOpEnabled = (ctx->Color.ColorLogicOpEnabled || - (ctx->Color.BlendEnabled && - ctx->Color.BlendEquationRGB == GL_LOGIC_OP)); + ctx->Color._LogicOpEnabled = RGBA_LOGICOP_ENABLED(ctx); } |