Sign in
dawn
/
dawn
/
1fa6a4beb24243ad86bba906eca9c09e4cbb200d
/
.
/
test
/
tint
/
expressions
/
binary
/
mul
/
scalar-vec3
/
i32.wgsl.expected.ir.msl
blob: 4bf0ea50984b8e850444f4c82322738ba2569e8e [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
int
const
a
=
4
;
int3
const
b
=
int3
(
1
,
2
,
3
);
int3
const
r
=
(
a
*
b
);
}