summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_debug.c
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2009-03-12 12:12:26 -0700
committerCorbin Simpson <MostAwesomeDude@gmail.com>2009-03-15 23:07:30 -0700
commit954a9fadad6a35ba360f4f28499fda74947d37fb (patch)
tree68d1d8f07cc49f5aff7c19335e5727c7a57d1129 /src/gallium/drivers/r300/r300_debug.c
parent8ae04f3c46e7ac26a71e00759a2b25fd35a4d8d6 (diff)
r300-gallium: Fix spacing.
It was driving me crazy.
Diffstat (limited to 'src/gallium/drivers/r300/r300_debug.c')
-rw-r--r--src/gallium/drivers/r300/r300_debug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/r300/r300_debug.c b/src/gallium/drivers/r300/r300_debug.c
index 10b0cf7353..f657588c72 100644
--- a/src/gallium/drivers/r300/r300_debug.c
+++ b/src/gallium/drivers/r300/r300_debug.c
@@ -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;
}
}