Sign in
dawn
/
dawn
/
144ebed4c7ee7c6ecddeedfa81d607bbf256e8f2
/
.
/
test
/
tint
/
expressions
/
binary
/
mod
/
scalar-vec3
/
u32.wgsl.expected.fxc.hlsl
blob: 66a630237996c48a056e61242d6b0cdf52c680c2 [
file
] [
log
] [
blame
]
uint3 tint_mod
(
uint
lhs
,
uint3 rhs
)
{
uint3 l
=
uint3
((
lhs
).
xxx
);
return
(
l
%
((
rhs
==
(
0u
).
xxx
)
?
(
1u
).
xxx
:
rhs
));
}
[
numthreads
(
1
,
1
,
1
)]
void
f
()
{
uint
a
=
4u
;
uint3 b
=
uint3
(
1u
,
2u
,
3u
);
uint3 r
=
tint_mod
(
a
,
b
);
return
;
}