android13/external/skia/resources/sksl/inliner/InlineKeywordOverridesThres...

15 lines
355 B
Plaintext

uniform half4 colorGreen;
inline int tooBig(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;
return x;
}
half4 main(float2 coords) {
int y = 0;
y = tooBig(y);
y = tooBig(y);
return colorGreen;
}