mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-17 17:50:29 +01:00
zink/spirv: use ordered compares
Acked-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
parent
3ef3ab2d54
commit
04bb08ed35
1 changed files with 2 additions and 2 deletions
|
|
@ -854,8 +854,8 @@ emit_alu(struct ntv_context *ctx, nir_alu_instr *alu)
|
|||
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_flt, SpvOpFOrdLessThan)
|
||||
BINOP(nir_op_fge, SpvOpFOrdGreaterThanEqual)
|
||||
BINOP(nir_op_feq, SpvOpFOrdEqual)
|
||||
BINOP(nir_op_fne, SpvOpFOrdNotEqual)
|
||||
BINOP(nir_op_ishl, SpvOpShiftLeftLogical)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue