Sign in
dawn
/
dawn
/
66652df8e490b60edeb974fa4500a956723ed206
/
.
/
test
/
tint
/
expressions
/
binary
/
mod
/
scalar-vec3
/
f32.wgsl.expected.ir.msl
blob: 00748aad49c1f81379072a8a04801a8589a4a907 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
float
const
a
=
4.0f
;
float3
const
b
=
float3
(
1.0f
,
2.0f
,
3.0f
);
float3
const
r
=
fmod
(
a
,
b
);
}