Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / resources / sksl / errors / VectorIndexOutOfRange.rts
1 void half4_neg1()              { half4 h;        half    v = h[-1]; }
2 void half4_0()                 { half4 h;        half    v = h[0]; }
3 void half4_1()                 { half4 h;        half    v = h[1]; }
4 void half4_2()                 { half4 h;        half    v = h[2]; }
5 void half4_3()                 { half4 h;        half    v = h[3]; }
6 void half4_4()                 { half4 h;        half    v = h[4]; }
7 void half4_huge()              { half4 h;        half    v = h[1000000000]; }
8
9 void half3_neg1()              { half3 h;        half    v = h[-1]; }
10 void half3_0()                 { half3 h;        half    v = h[0]; }
11 void half3_1()                 { half3 h;        half    v = h[1]; }
12 void half3_2()                 { half3 h;        half    v = h[2]; }
13 void half3_3()                 { half3 h;        half    v = h[3]; }
14 void half3_4()                 { half3 h;        half    v = h[4]; }
15 void half3_huge()              { half3 h;        half    v = h[1000000000]; }
16
17 void half2_neg1()              { half2 h;        half    v = h[-1]; }
18 void half2_0()                 { half2 h;        half    v = h[0]; }
19 void half2_1()                 { half2 h;        half    v = h[1]; }
20 void half2_2()                 { half2 h;        half    v = h[2]; }
21 void half2_3()                 { half2 h;        half    v = h[3]; }
22 void half2_4()                 { half2 h;        half    v = h[4]; }
23 void half2_huge()              { half2 h;        half    v = h[1000000000]; }
24
25 void half2_neg1_constidx()     { half2 h;        const int INDEX = -1;         half v = h[INDEX]; }
26 void half2_0_constidx()        { half2 h;        const int INDEX = 0;          half v = h[INDEX]; }
27 void half2_1_constidx()        { half2 h;        const int INDEX = 1;          half v = h[INDEX]; }
28 void half2_2_constidx()        { half2 h;        const int INDEX = 2;          half v = h[INDEX]; }
29 void half2_huge_constidx()     { half2 h;        const int INDEX = 1000000000; half v = h[INDEX]; }
30
31 void half3_neg1_constidx()     { half3 h;        const int INDEX = -1;         half v = h[INDEX]; }
32 void half3_0_constidx()        { half3 h;        const int INDEX = 0;          half v = h[INDEX]; }
33 void half3_1_constidx()        { half3 h;        const int INDEX = 1;          half v = h[INDEX]; }
34 void half3_2_constidx()        { half3 h;        const int INDEX = 2;          half v = h[INDEX]; }
35 void half3_3_constidx()        { half3 h;        const int INDEX = 3;          half v = h[INDEX]; }
36 void half3_huge_constidx()     { half3 h;        const int INDEX = 1000000000; half v = h[INDEX]; }
37
38 void half4_neg1_constidx()     { half4 h;        const int INDEX = -1;         half v = h[INDEX]; }
39 void half4_0_constidx()        { half4 h;        const int INDEX = 0;          half v = h[INDEX]; }
40 void half4_1_constidx()        { half4 h;        const int INDEX = 1;          half v = h[INDEX]; }
41 void half4_2_constidx()        { half4 h;        const int INDEX = 2;          half v = h[INDEX]; }
42 void half4_3_constidx()        { half4 h;        const int INDEX = 3;          half v = h[INDEX]; }
43 void half4_4_constidx()        { half4 h;        const int INDEX = 4;          half v = h[INDEX]; }
44 void half4_huge_constidx()     { half4 h;        const int INDEX = 1000000000; half v = h[INDEX]; }
45
46 /*%%*
47 index -1 out of range for 'half4'
48 index 4 out of range for 'half4'
49 index 1000000000 out of range for 'half4'
50 index -1 out of range for 'half3'
51 index 3 out of range for 'half3'
52 index 4 out of range for 'half3'
53 index 1000000000 out of range for 'half3'
54 index -1 out of range for 'half2'
55 index 2 out of range for 'half2'
56 index 3 out of range for 'half2'
57 index 4 out of range for 'half2'
58 index 1000000000 out of range for 'half2'
59 index -1 out of range for 'half2'
60 index 2 out of range for 'half2'
61 index 1000000000 out of range for 'half2'
62 index -1 out of range for 'half3'
63 index 3 out of range for 'half3'
64 index 1000000000 out of range for 'half3'
65 index -1 out of range for 'half4'
66 index 4 out of range for 'half4'
67 index 1000000000 out of range for 'half4'
68 *%%*/