Update opcodes.inc

This commit is contained in:
DanielSvoboda 2024-07-28 22:51:52 -03:00 committed by GitHub
parent 7215c1d2e1
commit fb26e39633
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -260,6 +260,8 @@ OPCODE(SMax32, U32, U32,
OPCODE(UMax32, U32, U32, U32, )
OPCODE(SClamp32, U32, U32, U32, U32, )
OPCODE(UClamp32, U32, U32, U32, U32, )
OPCODE(SLessThan, U1, U32, U32, )
OPCODE(ULessThan, U1, U32, U32, )
OPCODE(SLessThan32, U1, U32, U32, )
OPCODE(SLessThan64, U1, U64, U64, )
OPCODE(ULessThan32, U1, U32, U32, )
@ -326,3 +328,4 @@ OPCODE(ImageAtomicExchange32, U32, Opaq
// Warp operations
OPCODE(LaneId, U32, )
OPCODE(QuadShuffle, U32, U32, U32 )
OPCODE(WarpId, U32, )