Sign in
dawn
/
dawn
/
08f33fe5c6daea5cede4c1a5ac891fd3bf975c31
/
.
/
test
/
tint
/
expressions
/
binary
/
add
/
scalar-vec3
/
f16.wgsl.expected.msl
blob: 9e269b9328884add1fc51c4f535fe27e8c9b5c15 [
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
;
}