diff options
author | Rafael Antognolli <[email protected]> | 2017-06-19 17:15:55 -0700 |
---|---|---|
committer | Rafael Antognolli <[email protected]> | 2017-07-13 15:39:49 -0700 |
commit | b0052aa46fd7ffd6e96803214fc71bb119c83ae6 (patch) | |
tree | 5bdc5c38b2e40152fa3aec1bb3c500233be6f2c1 /src | |
parent | 5246d3eb835c8b5a9fe4fd65032f9d0f993efea7 (diff) |
i965: Move color calc code around a bit.
This makes the code more consistent accross generations.
Signed-off-by: Rafael Antognolli <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_cc.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_cc.c b/src/mesa/drivers/dri/i965/brw_cc.c index 1574788736c..676edaff121 100644 --- a/src/mesa/drivers/dri/i965/brw_cc.c +++ b/src/mesa/drivers/dri/i965/brw_cc.c @@ -123,6 +123,14 @@ static void upload_cc_unit(struct brw_context *brw) GLenum srcA = ctx->Color.Blend[0].SrcA; GLenum dstA = ctx->Color.Blend[0].DstA; + if (eqRGB == GL_MIN || eqRGB == GL_MAX) { + srcRGB = dstRGB = GL_ONE; + } + + if (eqA == GL_MIN || eqA == GL_MAX) { + srcA = dstA = GL_ONE; + } + /* If the renderbuffer is XRGB, we have to frob the blend function to * force the destination alpha to 1.0. This means replacing GL_DST_ALPHA * with GL_ONE and GL_ONE_MINUS_DST_ALPHA with GL_ZERO. @@ -136,14 +144,6 @@ static void upload_cc_unit(struct brw_context *brw) dstA = brw_fix_xRGB_alpha(dstA); } - if (eqRGB == GL_MIN || eqRGB == GL_MAX) { - srcRGB = dstRGB = GL_ONE; - } - - if (eqA == GL_MIN || eqA == GL_MAX) { - srcA = dstA = GL_ONE; - } - cc->cc6.dest_blend_factor = brw_translate_blend_factor(dstRGB); cc->cc6.src_blend_factor = brw_translate_blend_factor(srcRGB); cc->cc6.blend_function = brw_translate_blend_equation(eqRGB); |