Sign in
dawn
/
tint.git
/
73ced33dfbbf4ee97e6d2a50603ed11ef41bd162
/
.
/
test
/
expressions
/
binary
/
right-shift
/
vector-vector
/
u32.wgsl.expected.hlsl
blob: 1c57ee7a4dee58c76fd165033bc752b06382e150 [
file
]
[
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
;
}