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