skia2/tests/sksl/inliner/golden/InlineThreshold.glsl

43 lines
397 B
Plaintext
Raw Normal View History

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;
}
void main() {
int x = 0;
tooBig(x);
tooBig(x);
}