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