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