Sign in
dawn
/
dawn
/
HEAD
/
.
/
test
/
tint
/
expressions
/
binary
/
mod
/
vec3-vec3
/
f32.wgsl.expected.msl
blob: df3cd6d442d12a2c4651cc883c8638c1ef9aa4c8 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
[[
max_total_threads_per_threadgroup
(
1
)]]
kernel
void
f
()
{
float3
const
a
=
float3
(
1.0f
,
2.0f
,
3.0f
);
float3
const
b
=
float3
(
4.0f
,
5.0f
,
6.0f
);
float3
const
r
=
fmod
(
a
,
b
);
}