Sign in
dawn
/
dawn
/
6ad78e82fbd5ae3128df32e467221326685d9d0d
/
.
/
test
/
tint
/
expressions
/
binary
/
sub
/
vec3-scalar
/
f16.wgsl.expected.msl
blob: f136b52fd83fdd776f809cab025cb90ac81d51cd [
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
);
return
;
}