Sign in
dawn
/
dawn
/
e7099d4f3bb22e23e975099fb1d1314f76cd6227
/
.
/
test
/
tint
/
expressions
/
binary
/
mul
/
scalar-vec3
/
i32.wgsl.expected.msl
blob: 3493e3907b20a29ddf5dd004ce753d15072390a0 [
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
=
as_type
<int3>
((
as_type
<uint>
(
4
)
*
as_type
<uint3>
(
int3
(
1
,
2
,
3
))));
return
;
}