xref: /aosp_15_r20/external/skia/resources/sksl/shared/MultipleAssignments.sksl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1half4 main(float2 coords) {
2    float x;
3    float y;
4    x = y = 1;
5
6    half a, b, c;
7    a = b = c = 0;
8
9    return half4(a * b, x, c, y);
10}
11