mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-28 09:40:21 +01:00
r300compiler: Add MRT number to debugging output.
This commit is contained in:
parent
4769566500
commit
4fea39721d
2 changed files with 4 additions and 4 deletions
|
|
@ -297,7 +297,7 @@ void r300FragmentProgramDump(struct rX00_fragment_program_code *c)
|
|||
if (flags[0] != 0) {
|
||||
sprintf(tmp, "o%i.%s",
|
||||
(code->alu.inst[i].
|
||||
rgb_addr >> R300_ALU_DSTC_SHIFT) & 31,
|
||||
rgb_addr >> 29) & 3,
|
||||
flags);
|
||||
strcat(dstc, tmp);
|
||||
}
|
||||
|
|
@ -311,7 +311,7 @@ void r300FragmentProgramDump(struct rX00_fragment_program_code *c)
|
|||
if (code->alu.inst[i].alpha_addr & R300_ALU_DSTA_OUTPUT) {
|
||||
sprintf(tmp, "o%i.w ",
|
||||
(code->alu.inst[i].
|
||||
alpha_addr >> R300_ALU_DSTA_SHIFT) & 31);
|
||||
alpha_addr >> 25) & 3);
|
||||
strcat(dsta, tmp);
|
||||
}
|
||||
if (code->alu.inst[i].alpha_addr & R300_ALU_DSTA_DEPTH) {
|
||||
|
|
|
|||
|
|
@ -229,7 +229,7 @@ static void rc_print_pair_instruction(FILE * f, struct rc_instruction * fullinst
|
|||
(inst->RGB.WriteMask & 2) ? "y" : "",
|
||||
(inst->RGB.WriteMask & 4) ? "z" : "");
|
||||
if (inst->RGB.OutputWriteMask)
|
||||
fprintf(f, " color.%s%s%s",
|
||||
fprintf(f, " color[%i].%s%s%s", inst->RGB.Target,
|
||||
(inst->RGB.OutputWriteMask & 1) ? "x" : "",
|
||||
(inst->RGB.OutputWriteMask & 2) ? "y" : "",
|
||||
(inst->RGB.OutputWriteMask & 4) ? "z" : "");
|
||||
|
|
@ -255,7 +255,7 @@ static void rc_print_pair_instruction(FILE * f, struct rc_instruction * fullinst
|
|||
if (inst->Alpha.WriteMask)
|
||||
fprintf(f, " temp[%i].w", inst->Alpha.DestIndex);
|
||||
if (inst->Alpha.OutputWriteMask)
|
||||
fprintf(f, " color.w");
|
||||
fprintf(f, " color[%i].w", inst->Alpha.Target);
|
||||
if (inst->Alpha.DepthWriteMask)
|
||||
fprintf(f, " depth.w");
|
||||
if (inst->WriteALUResult == RC_ALURESULT_W)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue