blob: d55ef120d6e998b3d8dcb79c425c54f41e6d1509 [file] [log] [blame]
uniform half4 colorGreen;
inline int tooBig(int x) {
++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x;
++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x;
return x;
}
half4 main(float2 coords) {
int y = 0;
y = tooBig(y);
y = tooBig(y);
return colorGreen;
}