skia2/resources/sksl/inliner/InlineThreshold.sksl

14 lines
333 B
Plaintext
Raw Normal View History

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;
}