Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / resources / sksl / shared / MultipleAssignments.sksl
1 half4 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 }