Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / resources / sksl / shared / WhileLoopControlFlow.sksl
1 half4 main(float2 coords) {
2     half4 x = half4(1, 1, 1, 1);
3
4     // Verify that break is allowed in a while loop.
5     while (x.a == 1) {
6         x.r -= 0.25;
7         if (x.r <= 0) break;
8     }
9
10     // Verify that continue is allowed in a while loop.
11     while (x.b > 0) {
12         x.b -= 0.25;
13         if (x.a == 1) continue; // should always happen
14         x.g = 0;
15     }
16
17     // x contains green.
18     return x;
19 }