Sign in
dawn
/
dawn
/
5cf943e7972c52547ce3b2d581bd208ce2e18886
/
.
/
test
/
tint
/
expressions
/
binary
/
mod_by_zero
/
by_constant
/
scalar-scalar
/
f32.wgsl.expected.msl
blob: 25c2f18e89851258faf2bc1be5533e536c4a73a4 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
float
const
a
=
1.0f
;
float
const
b
=
0.0f
;
float
const
r
=
fmod
(
a
,
b
);
return
;
}