Sign in
dawn
/
dawn
/
3ddc07a18b8a22570ffe1e93f0a11d036462c192
/
.
/
test
/
tint
/
expressions
/
binary
/
left-shift
/
vector-vector
/
i32.wgsl.expected.msl
blob: a446c3d429dc8e65fbeae1504d8bd0ceb2f8fb9e [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
int3
const
a
=
int3
(
1
,
2
,
3
);
uint3
const
b
=
uint3
(
4u
,
5u
,
6u
);
int3
const
r
=
as_type
<int3>
((
as_type
<uint3>
(
a
)
<<
(
b
&
uint3
(
31u
))));
return
;
}