blob: 5d63472d6326bb1ddd2e4409385ad81d3adcd78a [file] [log] [blame]
uniform half4 colorGreen;
void tooBig(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;
}
half4 main(float2 coords) {
int x = 0;
tooBig(x);
tooBig(x);
return colorGreen;
}