xref: /aosp_15_r20/external/skia/resources/sksl/inliner/InlineWithUnnecessaryBlocks.sksl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1uniform half4 colorGreen;
2
3half4 blocky(half4 c) {
4    {
5        return c;
6    }
7}
8
9half4 main(float2 coords) {
10    return blocky(colorGreen);
11}
12