Sign in
dawn
/
dawn
/
0da91e06c57a9e45056c1690b972596f44fe7570
/
.
/
test
/
tint
/
expressions
/
binary
/
mul
/
scalar-scalar
/
f16.wgsl.expected.msl
blob: d0217a5a7c1868142340768de54d76987946aca7 [
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
;
}