You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
477 B
46 lines
477 B
|
|
out vec4 sk_FragColor;
|
|
uniform vec4 colorGreen;
|
|
void tooBig_vi(inout 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;
|
|
}
|
|
vec4 main() {
|
|
int x = 0;
|
|
tooBig_vi(x);
|
|
tooBig_vi(x);
|
|
return colorGreen;
|
|
}
|