r300-gallium: Fix spacing.
authorCorbin Simpson <MostAwesomeDude@gmail.com>
Thu, 12 Mar 2009 19:12:26 +0000 (12:12 -0700)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Mon, 16 Mar 2009 06:07:30 +0000 (23:07 -0700)
It was driving me crazy.

src/gallium/drivers/r300/r300_debug.c

index 10b0cf73532a003ef8e092df6de13c233f22e056..f657588c72064a2bcd75e65983947df0cb133c9c 100644 (file)
@@ -188,7 +188,7 @@ void r500_fs_dump(struct r500_fragment_shader* fs)
                 break;
             case R500_INST_TYPE_TEX:
                 inst = fs->instructions[i].inst1;
-                debug_printf("    1: TEX_INST  0x%08x: id: %d "
+                debug_printf("    1: TEX_INST   0x%08x: id: %d "
                         "op:%s, %s, %s %s\n",
                         inst, (inst >> 16) & 0xf,
                         r500_fs_tex[(inst >> 22) & 0x7],
@@ -197,7 +197,7 @@ void r500_fs_dump(struct r500_fragment_shader* fs)
                         (inst & (1 << 27)) ? "UNSCALED" : "SCALED");
 
                 inst = fs->instructions[i].inst2;
-                debug_printf("    2: TEX_ADDR  0x%08x: "
+                debug_printf("    2: TEX_ADDR   0x%08x: "
                         "src: %d%s %s/%s/%s/%s dst: %d%s %s/%s/%s/%s\n",
                         inst, inst & 0x7f, inst & (1 << 7) ? "(rel)" : "",
                         r500_fs_swiz[(inst >> 8) & 0x3],
@@ -211,7 +211,7 @@ void r500_fs_dump(struct r500_fragment_shader* fs)
                         r500_fs_swiz[(inst >> 30) & 0x3]);
                 
                 inst = fs->instructions[i].inst3;
-                debug_printf("    3: TEX_DXDY  0x%08x\n", inst);
+                debug_printf("    3: TEX_DXDY   0x%08x\n", inst);
                 break;
         }
     }