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