mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 02:48:06 +02:00
r300: Moar vs debug.
This commit is contained in:
parent
36705ee044
commit
fb7d1fb0f0
2 changed files with 28 additions and 3 deletions
|
|
@ -165,14 +165,27 @@ static void r300_vs_op_dump(uint32_t op)
|
|||
}
|
||||
}
|
||||
|
||||
void r300_vs_src_dump(uint32_t src)
|
||||
{
|
||||
debug_printf(" %s/%s/%s/%s\n",
|
||||
r300_vs_swiz_debug[(src >> 13) & 0x7],
|
||||
r300_vs_swiz_debug[(src >> 16) & 0x7],
|
||||
r300_vs_swiz_debug[(src >> 19) & 0x7],
|
||||
r300_vs_swiz_debug[(src >> 22) & 0x7]);
|
||||
}
|
||||
|
||||
void r300_vs_dump(struct r300_vertex_shader* vs)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < vs->instruction_count; i++) {
|
||||
debug_printf("%d: op: 0x%08x", i, vs->instructions[i].inst0);
|
||||
r300_vs_op_dump(vs->instructions[i].inst0);
|
||||
debug_printf("inst1: 0x%x\n", vs->instructions[i].inst1);
|
||||
debug_printf("inst2: 0x%x\n", vs->instructions[i].inst2);
|
||||
debug_printf("inst3: 0x%x\n", vs->instructions[i].inst3);
|
||||
debug_printf(" src0: 0x%08x", vs->instructions[i].inst1);
|
||||
r300_vs_src_dump(vs->instructions[i].inst1);
|
||||
debug_printf(" src1: 0x%08x", vs->instructions[i].inst2);
|
||||
r300_vs_src_dump(vs->instructions[i].inst2);
|
||||
debug_printf(" src2: 0x%08x", vs->instructions[i].inst3);
|
||||
r300_vs_src_dump(vs->instructions[i].inst3);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -173,6 +173,18 @@ static char* r300_vs_me_ops[] = {
|
|||
" (reserved)",
|
||||
};
|
||||
|
||||
/* XXX refactor to avoid clashing symbols */
|
||||
static char* r300_vs_swiz_debug[] = {
|
||||
"X",
|
||||
"Y",
|
||||
"Z",
|
||||
"W",
|
||||
"0",
|
||||
"1",
|
||||
"U",
|
||||
"U",
|
||||
};
|
||||
|
||||
void r500_fs_dump(struct r500_fragment_shader* fs);
|
||||
|
||||
void r300_vs_dump(struct r300_vertex_shader* vs);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue