mirror of
https://github.com/azahar-emu/sirit.git
synced 2026-03-20 11:11:03 +01:00
Add OpAny and OpAll
This commit is contained in:
@@ -346,6 +346,12 @@ public:
|
||||
|
||||
// Logical
|
||||
|
||||
/// Result is true if any component of Vector is true, otherwise result is false.
|
||||
Id OpAny(Id result_type, Id vector);
|
||||
|
||||
/// Result is true if all components of Vector are true, otherwise result is false.
|
||||
Id OpAll(Id result_type, Id vector);
|
||||
|
||||
/// Result is true if x is an IEEE NaN, otherwise result is false.
|
||||
Id OpIsNan(Id result_type, Id operand);
|
||||
|
||||
|
||||
@@ -35,6 +35,8 @@ namespace Sirit {
|
||||
return AddCode(std::move(op)); \
|
||||
}
|
||||
|
||||
DEFINE_UNARY(OpAny, spv::Op::OpAny);
|
||||
DEFINE_UNARY(OpAll, spv::Op::OpAll);
|
||||
DEFINE_UNARY(OpIsNan, spv::Op::OpIsNan)
|
||||
DEFINE_UNARY(OpIsInf, spv::Op::OpIsInf)
|
||||
DEFINE_BINARY(OpLogicalEqual, spv::Op::OpLogicalEqual)
|
||||
|
||||
Reference in New Issue
Block a user