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