Sign in
dawn
/
dawn
/
4cd8452c3caf5e21868a284aac15e7afee7606b5
/
.
/
test
/
tint
/
expressions
/
binary
/
sub
/
scalar-vec3
/
f16.wgsl.expected.msl
blob: 7a481e2d9a91affb8e23a2259cd4acd6fec209f8 [
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
;
}