Sign in
dawn
/
dawn
/
2d245581d702e6d94de066f8d53a3f8b5aa263e2
/
.
/
test
/
tint
/
expressions
/
unary
/
complement
/
complement.wgsl.expected.ir.msl
blob: 40022d5e374c11e27338ae96a29f21047e1b2a11 [
file
]
#include
<metal_stdlib>
using
namespace
metal
;
int
i
(
int
x
)
{
return
~(
x
);
}
uint
u
(
uint
x
)
{
return
~(
x
);
}
int4 vi
(
int4 x
)
{
return
~(
x
);
}
uint4 vu
(
uint4 x
)
{
return
~(
x
);
}