Sign in
dawn
/
dawn
/
1fa6a4beb24243ad86bba906eca9c09e4cbb200d
/
.
/
test
/
tint
/
expressions
/
binary
/
bit-and
/
vec3-vec3
/
bool.wgsl.expected.ir.msl
blob: f616a02c8118986e139aaf087536736e56c42b11 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
bool3
const
a
=
bool3
(
true
,
true
,
false
);
bool3
const
b
=
bool3
(
true
,
false
,
true
);
bool3
const
r
=
(
a
&
b
);
}