Sign in
dawn
/
dawn
/
da2acafcd691e6e6de648a1c7408c6c662cb6943
/
.
/
test
/
tint
/
expressions
/
binary
/
bit-and
/
scalar-scalar
/
bool.wgsl.expected.msl
blob: 48bc530e573d66a1aff0fbfd710118271aa5de7b [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
bool
const
a
=
true
;
bool
const
b
=
false
;
bool
const
r
=
bool
(
a
&
b
);
return
;
}