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