Sign in
dawn
/
dawn
/
18b966321bca9ed2a7787c0adbbb18d013fac43e
/
.
/
test
/
tint
/
expressions
/
binary
/
bit-and
/
vec3-vec3
/
bool.wgsl.expected.msl
blob: c5bc9d6875f15557c7e3eaf36881996cd7e57595 [
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
=
(
bool3
(
true
,
true
,
false
)
&
bool3
(
true
,
false
,
true
));
return
;
}