Sign in
dawn
/
dawn
/
0880e0643379ff2535187662cb21a803ce974cfa
/
.
/
test
/
tint
/
expressions
/
binary
/
mod
/
vec3-vec3
/
u32.wgsl.expected.fxc.hlsl
blob: d543c858ce463f5233cc6c4a892749837a1636ce [
file
] [
log
] [
blame
]
uint3 tint_mod
(
uint3 lhs
,
uint3 rhs
)
{
return
(
lhs
%
((
rhs
==
(
0u
).
xxx
)
?
(
1u
).
xxx
:
rhs
));
}
[
numthreads
(
1
,
1
,
1
)]
void
f
()
{
const
uint3 a
=
uint3
(
1u
,
2u
,
3u
);
const
uint3 b
=
uint3
(
4u
,
5u
,
6u
);
const
uint3 r
=
tint_mod
(
a
,
b
);
return
;
}