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-11-21 17:11:05 +00:00
|
|
|
shared int a;
|
|
|
|
shared vec4 b;
|
|
|
|
shared mat2 c;
|
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));
|
|
|
|
}
|
|
|
|
|
2022-03-31 22:30:10 +00:00
|
|
|
void foo() {
|
2022-11-09 22:04:11 +00:00
|
|
|
a = tint_div(a, 2);
|
2022-06-01 01:11:59 +00:00
|
|
|
b = (b * mat4(vec4(0.0f), vec4(0.0f), vec4(0.0f), vec4(0.0f)));
|
2022-03-31 22:30:10 +00:00
|
|
|
c = (c * 2.0f);
|
2022-03-31 22:30:10 +00:00
|
|
|
}
|
|
|
|
|