2022-03-31 22:30:10 +00:00
|
|
|
#version 310 es
|
2022-03-31 22:30:10 +00:00
|
|
|
|
2022-03-31 22:30:10 +00:00
|
|
|
float tint_float_modulo(float lhs, float rhs) {
|
|
|
|
return (lhs - rhs * trunc(lhs / rhs));
|
|
|
|
}
|
2022-03-31 22:30:10 +00:00
|
|
|
|
|
|
|
|
2022-03-31 22:30:10 +00:00
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
|
|
void unused_entry_point() {
|
|
|
|
return;
|
|
|
|
}
|
2022-11-21 17:11:05 +00:00
|
|
|
int a = 0;
|
|
|
|
float b = 0.0f;
|
2022-11-09 22:04:11 +00:00
|
|
|
int tint_div(int lhs, int rhs) {
|
|
|
|
return (lhs / (bool(uint((rhs == 0)) | uint(bool(uint((lhs == -2147483648)) & uint((rhs == -1))))) ? 1 : rhs));
|
|
|
|
}
|
|
|
|
|
|
|
|
int tint_mod(int lhs, int rhs) {
|
2023-02-10 15:01:02 +00:00
|
|
|
int rhs_or_one = (bool(uint((rhs == 0)) | uint(bool(uint((lhs == -2147483648)) & uint((rhs == -1))))) ? 1 : rhs);
|
|
|
|
if (((uint((lhs | rhs_or_one)) & 2147483648u) != 0u)) {
|
|
|
|
return (lhs - ((lhs / rhs_or_one) * rhs_or_one));
|
|
|
|
} else {
|
|
|
|
return (lhs % rhs_or_one);
|
|
|
|
}
|
2022-11-09 22:04:11 +00:00
|
|
|
}
|
|
|
|
|
2022-03-31 22:30:10 +00:00
|
|
|
void foo(int maybe_zero) {
|
2022-11-09 22:04:11 +00:00
|
|
|
a = tint_div(a, 0);
|
|
|
|
a = tint_mod(a, 0);
|
|
|
|
a = tint_div(a, maybe_zero);
|
|
|
|
a = tint_mod(a, maybe_zero);
|
2022-03-31 22:30:10 +00:00
|
|
|
b = (b / 0.0f);
|
|
|
|
b = tint_float_modulo(b, 0.0f);
|
|
|
|
b = (b / float(maybe_zero));
|
|
|
|
b = tint_float_modulo(b, float(maybe_zero));
|
2022-03-31 22:30:10 +00:00
|
|
|
}
|
|
|
|
|