Sign in
dawn
/
tint
/
9943de6813695e831a9e6aa43ae36322e81ae3e6
/
.
/
test
/
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
;
}