[Mesa-dev] [RFC 2/9] tgsi/dump: print _PRECISE modifier on Instrutions

Karol Herbst karolherbst at gmail.com
Sun Jun 11 18:42:32 UTC 2017


Signed-off-by: Karol Herbst <karolherbst at gmail.com>
---
 src/gallium/auxiliary/tgsi/tgsi_dump.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/gallium/auxiliary/tgsi/tgsi_dump.c b/src/gallium/auxiliary/tgsi/tgsi_dump.c
index f6eba7424b..b58e64511c 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_dump.c
+++ b/src/gallium/auxiliary/tgsi/tgsi_dump.c
@@ -584,6 +584,10 @@ iter_instruction(
       TXT( "_SAT" );
    }
 
+   if (inst->Instruction.Precise) {
+      TXT( "_PRECISE" );
+   }
+
    for (i = 0; i < inst->Instruction.NumDstRegs; i++) {
       const struct tgsi_full_dst_register *dst = &inst->Dst[i];
 
-- 
2.13.1



More information about the mesa-dev mailing list