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