mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 11:08:03 +02:00
aco: Print block_kind_export_end.
Useful when debugging issues with exports. Signed-off-by: Timur Kristóf <timur.kristof@gmail.com> Reviewed-by: Daniel Schürmann <daniel@schuermann.dev> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3576>
This commit is contained in:
parent
b9cbdb6a45
commit
90b1047fdf
1 changed files with 2 additions and 0 deletions
|
|
@ -689,6 +689,8 @@ static void print_block_kind(uint16_t kind, FILE *output)
|
|||
fprintf(output, "needs_lowering, ");
|
||||
if (kind & block_kind_uses_demote)
|
||||
fprintf(output, "uses_demote, ");
|
||||
if (kind & block_kind_export_end)
|
||||
fprintf(output, "export_end, ");
|
||||
}
|
||||
|
||||
void aco_print_block(const struct Block* block, FILE *output)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue