Sign in
dawn
/
dawn
/
8f1e9f35e6157516c79bdafd71143a11f57da119
/
.
/
test
/
tint
/
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
;
}