Sign in
dawn
/
tint
/
5af571bcbcf424fcc65430f304933c98612adbe1
/
.
/
test
/
expressions
/
binary
/
right-shift
/
scalar-scalar
/
u32.wgsl.expected.msl
blob: 68036b5ce6c7a598ea23e5261c58f8511fb49a66 [
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
);
return
;
}