Mesa (master): vc4: Make a helper for TLB color writes, too.

Eric Anholt anholt at kemper.freedesktop.org
Wed Jun 24 04:12:24 UTC 2015


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

Author: Eric Anholt <eric at anholt.net>
Date:   Tue Jun 23 18:04:00 2015 -0700

vc4: Make a helper for TLB color writes, too.

We've done so for all the other QIR instruction generation in this file.

---

 src/gallium/drivers/vc4/vc4_program.c |    2 +-
 src/gallium/drivers/vc4/vc4_qir.h     |    1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/gallium/drivers/vc4/vc4_program.c b/src/gallium/drivers/vc4/vc4_program.c
index c620a4a..2061631 100644
--- a/src/gallium/drivers/vc4/vc4_program.c
+++ b/src/gallium/drivers/vc4/vc4_program.c
@@ -1515,7 +1515,7 @@ emit_frag_end(struct vc4_compile *c)
                 qir_TLB_Z_WRITE(c, z);
         }
 
-        qir_emit(c, qir_inst(QOP_TLB_COLOR_WRITE, c->undef, color, c->undef));
+        qir_TLB_COLOR_WRITE(c, color);
 }
 
 static void
diff --git a/src/gallium/drivers/vc4/vc4_qir.h b/src/gallium/drivers/vc4/vc4_qir.h
index 732cfd0..2f1e261 100644
--- a/src/gallium/drivers/vc4/vc4_qir.h
+++ b/src/gallium/drivers/vc4/vc4_qir.h
@@ -523,6 +523,7 @@ QIR_ALU0(FRAG_W)
 QIR_ALU0(FRAG_REV_FLAG)
 QIR_ALU0(TEX_RESULT)
 QIR_ALU0(TLB_COLOR_READ)
+QIR_NODST_1(TLB_COLOR_WRITE)
 QIR_NODST_1(TLB_Z_WRITE)
 QIR_NODST_1(TLB_DISCARD_SETUP)
 QIR_NODST_1(TLB_STENCIL_SETUP)




More information about the mesa-commit mailing list