Sign in
dawn
/
dawn
/
254a9bdbe62a075da94c297df2e49f8ee79332ba
/
.
/
test
/
tint
/
expressions
/
binary
/
right-shift
/
scalar-scalar
/
u32.wgsl.expected.msl
blob: 448647e160fa6121dc449071600fbe62784c648b [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
uint
const
a
=
1u
;
uint
const
b
=
2u
;
uint
const
r
=
(
a
>>
(
b
&
31u
));
return
;
}