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

Author: Rob Clark <[email protected]>
Date:   Thu May  2 14:48:41 2019 -0700

nir: fix nir tex print harder

Fixes: 691d5a825a6 nir: rework tex instruction printing
Reviewed-by: Eric Anholt <[email protected]>
Signed-off-by: Rob Clark <[email protected]>

---

 src/compiler/nir/nir_print.c | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/src/compiler/nir/nir_print.c b/src/compiler/nir/nir_print.c
index 46995766974..4056bd77455 100644
--- a/src/compiler/nir/nir_print.c
+++ b/src/compiler/nir/nir_print.c
@@ -914,14 +914,13 @@ print_tex_instr(nir_tex_instr *instr, print_state *state)
 
    bool has_texture_deref = false, has_sampler_deref = false;
    for (unsigned i = 0; i < instr->num_srcs; i++) {
-      print_src(&instr->src[i].src, state);
-
-      if (i == 0) {
-         fprintf(fp, " ");
-      } else {
+      if (i > 0) {
          fprintf(fp, ", ");
       }
 
+      print_src(&instr->src[i].src, state);
+      fprintf(fp, " ");
+
       switch(instr->src[i].src_type) {
       case nir_tex_src_coord:
          fprintf(fp, "(coord)");
@@ -987,7 +986,7 @@ print_tex_instr(nir_tex_instr *instr, print_state *state)
    }
 
    if (instr->op == nir_texop_tg4) {
-      fprintf(fp, ", %u (gather_component), ", instr->component);
+      fprintf(fp, ", %u (gather_component)", instr->component);
    }
 
    if (nir_tex_instr_has_explicit_tg4_offsets(instr)) {

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

Reply via email to