Sign in
dawn
/
tint
/
bf0180bcee90e8624d8063e55624bfebd8f7fb76
/
.
/
test
/
expressions
/
binary
/
left-shift
/
vector-vector
/
u32.wgsl.expected.hlsl
blob: 2de16f0c9b551549e7020ac9cbbc604040f454a7 [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
f
()
{
const
uint3 a
=
uint3
(
1u
,
2u
,
3u
);
const
uint3 b
=
uint3
(
4u
,
5u
,
6u
);
const
uint3 r
=
(
a
<<
b
);
return
;
}