Sign in
dawn
/
dawn
/
6e93ca5f8bfa3ff68c2b580212f5853ccc7985a1
/
.
/
test
/
tint
/
expressions
/
binary
/
left-shift
/
vector-vector
/
i32.wgsl.expected.ir.msl
blob: d9345f37843a05631146f32379a9afe5714d2fd2 [
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
=
(
a
<<
(
b
&
uint3
(
31u
)));
}