From: Kenneth Graunke Date: Mon, 12 Nov 2018 19:33:44 +0000 (-0800) Subject: iris: Fix independent alpha blending. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5207a5f5d5385690341b75f1633b245b13716f53;p=mesa.git iris: Fix independent alpha blending. independent_blend_enable means per-RT blending, not RGB != A --- diff --git a/src/gallium/drivers/iris/iris_state.c b/src/gallium/drivers/iris/iris_state.c index 0bc7843206d..2631bf08b5b 100644 --- a/src/gallium/drivers/iris/iris_state.c +++ b/src/gallium/drivers/iris/iris_state.c @@ -782,39 +782,22 @@ iris_create_blend_state(struct pipe_context *ctx, const struct pipe_blend_state *state) { struct iris_blend_state *cso = malloc(sizeof(struct iris_blend_state)); - uint32_t *blend_state = cso->blend_state; + uint32_t *blend_entry = cso->blend_state + GENX(BLEND_STATE_length); cso->alpha_to_coverage = state->alpha_to_coverage; - iris_pack_command(GENX(3DSTATE_PS_BLEND), cso->ps_blend, pb) { - /* pb.HasWriteableRT is filled in at draw time. */ - /* pb.AlphaTestEnable is filled in at draw time. */ - pb.AlphaToCoverageEnable = state->alpha_to_coverage; - pb.IndependentAlphaBlendEnable = state->independent_blend_enable; - - pb.ColorBufferBlendEnable = state->rt[0].blend_enable; - - pb.SourceBlendFactor = state->rt[0].rgb_src_factor; - pb.SourceAlphaBlendFactor = state->rt[0].alpha_src_factor; - pb.DestinationBlendFactor = state->rt[0].rgb_dst_factor; - pb.DestinationAlphaBlendFactor = state->rt[0].alpha_dst_factor; - } - - iris_pack_state(GENX(BLEND_STATE), blend_state, bs) { - bs.AlphaToCoverageEnable = state->alpha_to_coverage; - bs.IndependentAlphaBlendEnable = state->independent_blend_enable; - bs.AlphaToOneEnable = state->alpha_to_one; - bs.AlphaToCoverageDitherEnable = state->alpha_to_coverage; - bs.ColorDitherEnable = state->dither; - /* bl.AlphaTestEnable and bs.AlphaTestFunction are filled in later. */ - } - - blend_state += GENX(BLEND_STATE_length); + bool indep_alpha_blend = false; for (int i = 0; i < BRW_MAX_DRAW_BUFFERS; i++) { const struct pipe_rt_blend_state *rt = &state->rt[state->independent_blend_enable ? i : 0]; - iris_pack_state(GENX(BLEND_STATE_ENTRY), blend_state, be) { + + if (rt->rgb_func != rt->alpha_func || + rt->rgb_src_factor != rt->alpha_src_factor || + rt->rgb_dst_factor != rt->alpha_dst_factor) + indep_alpha_blend = true; + + iris_pack_state(GENX(BLEND_STATE_ENTRY), blend_entry, be) { be.LogicOpEnable = state->logicop_enable; be.LogicOpFunction = state->logicop_func; @@ -837,9 +820,33 @@ iris_create_blend_state(struct pipe_context *ctx, be.WriteDisableBlue = !(rt->colormask & PIPE_MASK_B); be.WriteDisableAlpha = !(rt->colormask & PIPE_MASK_A); } - blend_state += GENX(BLEND_STATE_ENTRY_length); + blend_entry += GENX(BLEND_STATE_ENTRY_length); } + iris_pack_command(GENX(3DSTATE_PS_BLEND), cso->ps_blend, pb) { + /* pb.HasWriteableRT is filled in at draw time. */ + /* pb.AlphaTestEnable is filled in at draw time. */ + pb.AlphaToCoverageEnable = state->alpha_to_coverage; + pb.IndependentAlphaBlendEnable = indep_alpha_blend; + + pb.ColorBufferBlendEnable = state->rt[0].blend_enable; + + pb.SourceBlendFactor = state->rt[0].rgb_src_factor; + pb.SourceAlphaBlendFactor = state->rt[0].alpha_src_factor; + pb.DestinationBlendFactor = state->rt[0].rgb_dst_factor; + pb.DestinationAlphaBlendFactor = state->rt[0].alpha_dst_factor; + } + + iris_pack_state(GENX(BLEND_STATE), cso->blend_state, bs) { + bs.AlphaToCoverageEnable = state->alpha_to_coverage; + bs.IndependentAlphaBlendEnable = indep_alpha_blend; + bs.AlphaToOneEnable = state->alpha_to_one; + bs.AlphaToCoverageDitherEnable = state->alpha_to_coverage; + bs.ColorDitherEnable = state->dither; + /* bl.AlphaTestEnable and bs.AlphaTestFunction are filled in later. */ + } + + return cso; }