To specify which render target is being written.
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4097>
bi_print_branch(&ins->branch, fp);
else if (ins->type == BI_CSEL)
fprintf(fp, "%s", bi_cond_name(ins->csel_cond));
+ else if (ins->type == BI_BLEND)
+ fprintf(fp, ".loc%u", ins->blend_location);
if (ins->dest)
bi_print_alu_type(ins->dest_type, fp);
/* For CSEL, the comparison op. BI_COND_ALWAYS doesn't make
* sense here but you can always just use a move for that */
enum bi_cond csel_cond;
+
+ /* For BLEND -- the location 0-7 */
+ unsigned blend_location;
};
} bi_instruction;