• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1uniform half4 colorGreen;
2
3inline int tooBig(int x) {
4    ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x;
5    ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x;
6    return x;
7}
8
9half4 main(float2 coords) {
10    int y = 0;
11    y = tooBig(y);
12    y = tooBig(y);
13    return colorGreen;
14}
15