Sign in
dawn
/
dawn
/
55ceebec1e92b73401bb6da5f9c813dee6a9266f
/
.
/
test
/
tint
/
expressions
/
binary
/
bit-xor
/
scalar-scalar
/
u32.wgsl.expected.msl
blob: 8093c0c10944cd4538c96211f0ff361b497cdd02 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
uint
const
a
=
1u
;
uint
const
b
=
2u
;
uint
const
r
=
(
a
^
b
);
return
;
}