Sign in
dawn
/
dawn
/
144ebed4c7ee7c6ecddeedfa81d607bbf256e8f2
/
.
/
test
/
tint
/
expressions
/
binary
/
div
/
scalar-vec3
/
u32.wgsl.expected.dxc.hlsl
blob: 654c99688852b41918c38507d2e123c33229d6e8 [
file
] [
log
] [
blame
]
uint3 tint_div
(
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_div
(
a
,
b
);
return
;
}