Sign in
dawn
/
dawn
/
ea12bfae75b8e57931b32880ac20cf4500dae9aa
/
.
/
test
/
tint
/
expressions
/
binary
/
div
/
scalar-scalar
/
i32.wgsl.expected.dxc.hlsl
blob: 9a4fe9bbe1bb7c8a7e492e8b4bd05d77c1f94c97 [
file
] [
log
] [
blame
]
int
tint_div
(
int
lhs
,
int
rhs
)
{
return
(
lhs
/
(((
rhs
==
0
)
|
((
lhs
==
-
2147483648
)
&
(
rhs
==
-
1
)))
?
1
:
rhs
));
}
[
numthreads
(
1
,
1
,
1
)]
void
f
()
{
const
int
a
=
1
;
const
int
b
=
2
;
const
int
r
=
tint_div
(
a
,
b
);
return
;
}