Sign in
dawn
/
dawn
/
01cea786e0ff548e50d578569794de4287225f8f
/
.
/
test
/
tint
/
expressions
/
binary
/
mul
/
vec3-vec3
/
f32.wgsl.expected.msl
blob: 6c471be932013cb6dded937f62201953b721ef72 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
float3
const
a
=
float3
(
1.0f
,
2.0f
,
3.0f
);
float3
const
b
=
float3
(
4.0f
,
5.0f
,
6.0f
);
float3
const
r
=
(
float3
(
1.0f
,
2.0f
,
3.0f
)
*
float3
(
4.0f
,
5.0f
,
6.0f
));
return
;
}