Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / resources / sksl / runtime_errors / ProgramTooLarge_NestedLoops.rts
1 half4 main(float2 xy) {
2     int i;
3
4     for (int a=0; a<10; ++a) { // 10
5     for (int b=0; b<10; ++b) { // 100
6     for (int c=0; c<10; ++c) { // 1000
7     for (int d=0; d<10; ++d) { // 10000
8     for (int e=0; e<10; ++e) { // 100000
9         ++i;
10     }}}}}
11
12     return half4(0);
13 }
14
15 /*%%*
16 error: program is too large
17 *%%*/