Sign in
dawn
/
dawn
/
5555694d23e1507c24c76827003d765f6593ecf2
/
.
/
test
/
tint
/
expressions
/
binary
/
left-shift
/
vector-vector
/
u32.wgsl.expected.ir.msl
blob: 72c291d47e99091296aad82ce53b887e04d411b3 [
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
);
}