xref: /aosp_15_r20/external/skia/resources/sksl/inliner/InlineThreshold.sksl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1uniform half4 colorGreen;
2
3void tooBig(inout 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}
7
8half4 main(float2 coords) {
9    int x = 0;
10    tooBig(x);
11    tooBig(x);
12    return colorGreen;
13}
14