mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
pan/mdg: Handle {i,u}{add,sub}_sat
As SATADD with different modifiers. Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11123>
This commit is contained in:
parent
bdb32eec9a
commit
1369d5e43a
1 changed files with 4 additions and 0 deletions
|
|
@ -744,6 +744,10 @@ emit_alu(compiler_context *ctx, nir_alu_instr *instr)
|
|||
ALU_CASE(fdot4, fdot4);
|
||||
ALU_CASE(iadd, iadd);
|
||||
ALU_CASE(isub, isub);
|
||||
ALU_CASE(iadd_sat, iaddsat);
|
||||
ALU_CASE(isub_sat, isubsat);
|
||||
ALU_CASE(uadd_sat, uaddsat);
|
||||
ALU_CASE(usub_sat, usubsat);
|
||||
ALU_CASE(imul, imul);
|
||||
ALU_CASE(imul_high, imul);
|
||||
ALU_CASE(umul_high, imul);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue