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