diff options
author | Brian Paul <brianp@vmware.com> | 2009-10-10 09:12:00 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-10-10 09:24:22 -0600 |
commit | 39daa763b59cc80d862709e99ee3619bd0f7a14d (patch) | |
tree | cf4b38befce2c447004e5f77ce95a9784eae7b26 /src/gallium/drivers | |
parent | a74e53ddba246b1f6604c6120b63a923fd9c60d5 (diff) |
softpipe: fix multi-drawbuffers regression
This is part of the fix for bug 24401.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_quad_blend.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/softpipe/sp_quad_blend.c b/src/gallium/drivers/softpipe/sp_quad_blend.c index e243c63fa2..0ad0b98654 100644 --- a/src/gallium/drivers/softpipe/sp_quad_blend.c +++ b/src/gallium/drivers/softpipe/sp_quad_blend.c @@ -946,15 +946,15 @@ choose_blend_quad(struct quad_stage *qs, qs->run = blend_noop; } else if (!softpipe->blend->logicop_enable && - softpipe->blend->colormask == 0xf) + softpipe->blend->colormask == 0xf && + softpipe->framebuffer.nr_cbufs == 1) { if (!blend->blend_enable) { qs->run = single_output_color; } else if (blend->rgb_src_factor == blend->alpha_src_factor && blend->rgb_dst_factor == blend->alpha_dst_factor && - blend->rgb_func == blend->alpha_func && - softpipe->framebuffer.nr_cbufs == 1) + blend->rgb_func == blend->alpha_func) { if (blend->alpha_func == PIPE_BLEND_ADD) { if (blend->rgb_src_factor == PIPE_BLENDFACTOR_ONE && |