From: Ilia Mirkin Date: Tue, 15 Aug 2017 03:38:52 +0000 (-0400) Subject: a2xx: add logicop support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=08f72a89444caa9b0851c8ea6458d44ecacec478;p=mesa.git a2xx: add logicop support This passes both gl-1.0-logicop and gl-1.1-xor piglits. Signed-off-by: Ilia Mirkin --- diff --git a/src/gallium/drivers/freedreno/a2xx/fd2_blend.c b/src/gallium/drivers/freedreno/a2xx/fd2_blend.c index f063ebed66a..eae47ad061f 100644 --- a/src/gallium/drivers/freedreno/a2xx/fd2_blend.c +++ b/src/gallium/drivers/freedreno/a2xx/fd2_blend.c @@ -61,11 +61,10 @@ fd2_blend_state_create(struct pipe_context *pctx, { const struct pipe_rt_blend_state *rt = &cso->rt[0]; struct fd2_blend_stateobj *so; + unsigned rop = PIPE_LOGICOP_COPY; - if (cso->logicop_enable) { - DBG("Unsupported! logicop"); - return NULL; - } + if (cso->logicop_enable) + rop = cso->logicop_func; /* 1:1 mapping with hw */ if (cso->independent_blend_enable) { DBG("Unsupported! independent blend state"); @@ -78,7 +77,7 @@ fd2_blend_state_create(struct pipe_context *pctx, so->base = *cso; - so->rb_colorcontrol = A2XX_RB_COLORCONTROL_ROP_CODE(12); + so->rb_colorcontrol = A2XX_RB_COLORCONTROL_ROP_CODE(rop); so->rb_blendcontrol = A2XX_RB_BLEND_CONTROL_COLOR_SRCBLEND(fd_blend_factor(rt->rgb_src_factor)) |