[Mesa-dev] [PATCH] nir: print var binding in dumps.

Dave Airlie airlied at gmail.com
Wed Nov 23 22:26:38 UTC 2016


From: Dave Airlie <airlied at redhat.com>

This only useful for spir-v shaders, but I keep finding myself
having to add it.

Signed-off-by: Dave Airlie <airlied at redhat.com>
---
 src/compiler/nir/nir_print.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/compiler/nir/nir_print.c b/src/compiler/nir/nir_print.c
index ed02435..a5b2909 100644
--- a/src/compiler/nir/nir_print.c
+++ b/src/compiler/nir/nir_print.c
@@ -432,7 +432,7 @@ print_var_decl(nir_variable *var, print_state *state)
          loc = buf;
       }
 
-      fprintf(fp, " (%s, %u)%s", loc, var->data.driver_location,
+      fprintf(fp, " (%s, %u, %u)%s", loc, var->data.driver_location, var->data.binding,
               var->data.compact ? " compact" : "");
    }
 
-- 
2.7.4



More information about the mesa-dev mailing list