mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
aco: fix printing of block_kind_discard_early_exit
Signed-off-by: Rhys Perry <pendingchaos02@gmail.com> Reviewed-by: Georg Lehmann <dadschoorse@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24884>
This commit is contained in:
parent
0ad713ca9f
commit
4dfc564669
1 changed files with 2 additions and 0 deletions
|
|
@ -848,6 +848,8 @@ print_block_kind(uint16_t kind, FILE* output)
|
|||
fprintf(output, "merge, ");
|
||||
if (kind & block_kind_invert)
|
||||
fprintf(output, "invert, ");
|
||||
if (kind & block_kind_discard_early_exit)
|
||||
fprintf(output, "discard_early_exit, ");
|
||||
if (kind & block_kind_uses_discard)
|
||||
fprintf(output, "discard, ");
|
||||
if (kind & block_kind_resume)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue