mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 01:38:06 +02:00
aco: Print r128/a16 MIMG bits separately.
These both exist since Navi and we can have instructions which are one but not the other. Signed-off-by: Georg Lehmann <dadschoorse@gmail.com> Reviewed-by: Daniel Schürmann <daniel@schuermann.dev> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16969>
This commit is contained in:
parent
1dd2915298
commit
0ca6653ada
1 changed files with 4 additions and 2 deletions
|
|
@ -420,8 +420,10 @@ print_instr_format_specific(const Instruction* instr, FILE* output)
|
|||
fprintf(output, " da");
|
||||
if (mimg.lwe)
|
||||
fprintf(output, " lwe");
|
||||
if (mimg.r128 || mimg.a16)
|
||||
fprintf(output, " r128/a16");
|
||||
if (mimg.r128)
|
||||
fprintf(output, " r128");
|
||||
if (mimg.a16)
|
||||
fprintf(output, " a16");
|
||||
if (mimg.d16)
|
||||
fprintf(output, " d16");
|
||||
if (mimg.disable_wqm)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue