Module: Mesa
Branch: master
Commit: 08f72a89444caa9b0851c8ea6458d44ecacec478
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=08f72a89444caa9b0851c8ea6458d44ecacec478

Author: Ilia Mirkin <[email protected]>
Date:   Mon Aug 14 23:38:52 2017 -0400

a2xx: add logicop support

This passes both gl-1.0-logicop and gl-1.1-xor piglits.

Signed-off-by: Ilia Mirkin <[email protected]>

---

 src/gallium/drivers/freedreno/a2xx/fd2_blend.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/src/gallium/drivers/freedreno/a2xx/fd2_blend.c 
b/src/gallium/drivers/freedreno/a2xx/fd2_blend.c
index f063ebed66..eae47ad061 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)) |

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to