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
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
|
|
void unused_entry_point() {
|
|
|
|
return;
|
2022-03-31 22:30:10 +00:00
|
|
|
}
|
2022-11-02 02:25:38 +00:00
|
|
|
struct S {
|
2022-03-31 22:30:10 +00:00
|
|
|
int a;
|
2022-11-02 02:25:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
layout(binding = 0, std430) buffer v_block_ssbo {
|
|
|
|
S inner;
|
2022-03-31 22:30:10 +00:00
|
|
|
} v;
|
2022-09-02 19:19:10 +00:00
|
|
|
|
2022-11-21 17:11:05 +00:00
|
|
|
int tint_mod(int lhs, int rhs) {
|
2023-03-08 21:13:22 +00:00
|
|
|
int rhs_or_one = (bool(uint((rhs == 0)) | uint(bool(uint((lhs == (-2147483647 - 1))) & uint((rhs == -1))))) ? 1 : rhs);
|
2023-02-10 15:01:02 +00:00
|
|
|
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-21 17:11:05 +00:00
|
|
|
}
|
|
|
|
|
2022-03-31 22:30:10 +00:00
|
|
|
void foo() {
|
2023-03-02 20:48:48 +00:00
|
|
|
v.inner.a = tint_mod(v.inner.a, 2);
|
2022-03-31 22:30:10 +00:00
|
|
|
}
|
|
|
|
|