Sign in
dawn
/
dawn
/
8f1e9f35e6157516c79bdafd71143a11f57da119
/
.
/
test
/
tint
/
expressions
/
binary
/
sub
/
scalar-scalar
/
f16.wgsl.expected.msl
blob: fc7f51a641f45b6c89ebeaf898e9609e2cd34943 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
half
const
a
=
1.0h
;
half
const
b
=
2.0h
;
half
const
r
=
(
a
-
b
);
return
;
}