Sign in
dawn
/
dawn
/
7143450998c72258f994acea688164f2fa1ff3eb
/
.
/
test
/
tint
/
expressions
/
binary
/
div
/
scalar-vec3
/
f16.wgsl.expected.msl
blob: 2281dade34ab18d94c5b9bd067c22e9162933583 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
half
const
a
=
4.0h
;
half3
const
b
=
half3
(
1.0h
,
2.0h
,
3.0h
);
half3
const
r
=
(
a
/
b
);
return
;
}