Sign in
dawn
/
tint
/
be11f9f9cafe5b95bcea0ee1dd44f36d255b78f4
/
.
/
test
/
expressions
/
binary
/
bit-and
/
vec3-vec3
/
u32.wgsl.expected.msl
blob: f0aefd1781c0e1b6d7037db885eca57a04349b66 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
uint3
const
a
=
uint3
(
1u
,
2u
,
3u
);
uint3
const
b
=
uint3
(
4u
,
5u
,
6u
);
uint3
const
r
=
(
a
&
b
);
return
;
}