Sign in
dawn
/
dawn
/
3d64565e2eb8fe4a377b18e288edac70d28d586f
/
.
/
test
/
tint
/
expressions
/
unary
/
complement
/
complement.wgsl.expected.glsl
blob: 67fa5de7330e295aeb38215b53c443b1d2759aa8 [
file
] [
log
] [
blame
]
#version 310 es
int
i
(
int
x
)
{
return
~(
x
);
}
uint
u
(
uint
x
)
{
return
~(
x
);
}
ivec4 vi
(
ivec4 x
)
{
return
~(
x
);
}
uvec4 vu
(
uvec4 x
)
{
return
~(
x
);
}
layout
(
local_size_x
=
1
,
local_size_y
=
1
,
local_size_z
=
1
)
in
;
void
main
()
{
}