From: Karol Herbst Date: Fri, 23 Jun 2017 18:30:21 +0000 (+0200) Subject: tgsi/dump: print _PRECISE modifier on Instructions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0341aea2f892d0ea72bbb92e3c659658f348d993;p=mesa.git tgsi/dump: print _PRECISE modifier on Instructions Signed-off-by: Karol Herbst Reviewed-by: Nicolai Hähnle --- diff --git a/src/gallium/auxiliary/tgsi/tgsi_dump.c b/src/gallium/auxiliary/tgsi/tgsi_dump.c index f6eba7424b3..b58e64511ce 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];