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