Mesa (master): util/tgsi: Fix ureg_EMIT/ENDPRIM prototype.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Tue Jul 15 13:57:04 UTC 2014


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

Author: José Fonseca <jfonseca at vmware.com>
Date:   Tue Jul 15 14:47:20 2014 +0100

util/tgsi: Fix ureg_EMIT/ENDPRIM prototype.

0cbefc1bea703378381afff946e30c27a21f191d added a source argument to
EMIT/ENDPRIM, but it did not update tgsi_ureg accordingly, causing all
users of ureg_EMIT/ENDPRIM to fail at runtime with an assertion failure.

Trivial.

---

 src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h b/src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h
index cc5c03b..7888be8 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h
+++ b/src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h
@@ -146,8 +146,8 @@ OP13(SAD)
 OP12_TEX(TXF)
 OP12_TEX(TXQ)
 OP00(CONT)
-OP00(EMIT)
-OP00(ENDPRIM)
+OP01(EMIT)
+OP01(ENDPRIM)
 OP00_LBL(BGNLOOP)
 OP00(BGNSUB)
 OP00_LBL(ENDLOOP)




More information about the mesa-commit mailing list