Sign in
dawn
/
dawn
/
b8451d460373938ce3a772aa52f591e815b76d54
/
.
/
test
/
tint
/
expressions
/
binary
/
bit-and
/
scalar-scalar
/
u32.wgsl.expected.ir.msl
blob: 029f0349e924f0f2548b03b78c38783fbcf7353c [
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
);
}