Sign in
dawn
/
dawn
/
5555694d23e1507c24c76827003d765f6593ecf2
/
.
/
test
/
tint
/
expressions
/
binary
/
right-shift
/
vector-vector
/
u32.wgsl.expected.ir.msl
blob: ea101bfc257599a10e2d6685f40fa93315f7dc56 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
void
f
()
{
uint3
const
a
=
uint3
(
1u
,
2u
,
3u
);
uint3
const
b
=
uint3
(
4u
,
5u
,
6u
);
uint3
const
r
=
(
a
>>
b
);
}