nv50: newlines in shader bincode printing
authorChristoph Bumiller <e0425955@student.tuwien.ac.at>
Sun, 12 Sep 2010 09:37:07 +0000 (11:37 +0200)
committerChristoph Bumiller <e0425955@student.tuwien.ac.at>
Sun, 12 Sep 2010 09:41:57 +0000 (11:41 +0200)
src/gallium/drivers/nv50/nv50_pc.c

index 0511acfd5714a7a8ccfad5f0cd6a865111c07cf2..c934450d42434f1e36bc0d0097bbb905b2c27ede 100644 (file)
@@ -405,10 +405,13 @@ nv_print_cfgraph(struct nv_pc *pc, const char *filepath, int subr)
 static INLINE void
 nvcg_show_bincode(struct nv_pc *pc)
 {
-   int i;
+   unsigned i;
 
-   for (i = 0; i < pc->bin_size / 4; ++i)
+   for (i = 0; i < pc->bin_size / 4; ++i) {
       debug_printf("0x%08x ", pc->emit[i]);
+      if ((i % 16) == 15)
+         debug_printf("\n");
+   }
    debug_printf("\n");
 }