Sign in
dawn
/
dawn
/
3c054304a8fc579ea085d44af010e470cb591921
/
.
/
test
/
tint
/
expressions
/
binary
/
bit-xor
/
vec3-vec3
/
i32.wgsl.expected.hlsl
blob: 17aabc15b8267f62ec88154ff9228abefd33058f [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
f
()
{
const
int3 a
=
int3
(
1
,
2
,
3
);
const
int3 b
=
int3
(
4
,
5
,
6
);
const
int3 r
=
(
int3
(
1
,
2
,
3
)
^
int3
(
4
,
5
,
6
));
return
;
}