Sign in
dawn
/
tint
/
d57a129810051f867cf46657439605120c8fec12
/
.
/
test
/
expressions
/
binary
/
bit-xor
/
vec3-vec3
/
i32.wgsl.expected.msl
blob: 82c280be2756f8955e49579eb8d34839a87a267a [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
int3
const
a
=
int3
(
1
,
2
,
3
);
int3
const
b
=
int3
(
4
,
5
,
6
);
int3
const
r
=
(
a
^
b
);
return
;
}