mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 18:28:12 +02:00
zink: more comparison-ops
Acked-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
parent
bcd12adce5
commit
b5bfb72fce
1 changed files with 5 additions and 0 deletions
|
|
@ -837,8 +837,13 @@ emit_alu(struct ntv_context *ctx, nir_alu_instr *alu)
|
|||
BINOP(nir_op_fmul, SpvOpFMul)
|
||||
BINOP(nir_op_fdiv, SpvOpFDiv)
|
||||
BINOP(nir_op_fmod, SpvOpFMod)
|
||||
BINOP(nir_op_ige, SpvOpSGreaterThanEqual)
|
||||
BINOP(nir_op_ieq, SpvOpIEqual)
|
||||
BINOP(nir_op_ine, SpvOpINotEqual)
|
||||
BINOP(nir_op_flt, SpvOpFUnordLessThan)
|
||||
BINOP(nir_op_fge, SpvOpFUnordGreaterThanEqual)
|
||||
BINOP(nir_op_feq, SpvOpFOrdEqual)
|
||||
BINOP(nir_op_fne, SpvOpFOrdNotEqual)
|
||||
BINOP(nir_op_ishl, SpvOpShiftLeftLogical)
|
||||
BINOP(nir_op_ishr, SpvOpShiftRightArithmetic)
|
||||
BINOP(nir_op_ushr, SpvOpShiftRightLogical)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue