Sign in
dawn
/
dawn
/
32363954436092f4d0c5f2c8dd5f1fa8f2ff00af
/
.
/
test
/
tint
/
expressions
/
binary
/
bit-and
/
vec3-vec3
/
bool.wgsl.expected.ir.msl
blob: 9a2b3a716112195326b8b918078a690eaf5dc695 [
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
);
uint3
const
v
=
uint3
(
a
);
bool3
const
r
=
bool3
((
v
&
uint3
(
b
)));
}