Sign in
dawn
/
dawn
/
0f74a3af4075b1f4eb2acf0cc0578e220d1e3fa7
/
.
/
test
/
tint
/
expressions
/
unary
/
complement
/
complement.wgsl.expected.ir.msl
blob: 40022d5e374c11e27338ae96a29f21047e1b2a11 [
file
] [
log
] [
blame
]
#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
);
}