Sign in
dawn
/
dawn
/
8392a82a40b73685a9832d42556efd7c43e4951e
/
.
/
test
/
tint
/
expressions
/
binary
/
mod
/
scalar-scalar
/
f16.wgsl.expected.msl
blob: b163fed16306df9e4e1be3a9d41f6bbc3a84bf52 [
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
=
fmod
(
a
,
b
);
return
;
}