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