Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / resources / sksl / errors / BadModifiers.sksl
1 const in out uniform flat noperspective sk_has_side_effects inline noinline void func1() {}
2
3 void func2(const in out uniform flat noperspective sk_has_side_effects
4            inline noinline float test) {}
5
6 const in out uniform flat noperspective sk_has_side_effects inline noinline float var;
7
8 /*%%*
9 'const' is not permitted here
10 'in' is not permitted here
11 'out' is not permitted here
12 'uniform' is not permitted here
13 'flat' is not permitted here
14 'noperspective' is not permitted here
15 functions cannot be both 'inline' and 'noinline'
16 'uniform' is not permitted here
17 'flat' is not permitted here
18 'noperspective' is not permitted here
19 'sk_has_side_effects' is not permitted here
20 'inline' is not permitted here
21 'noinline' is not permitted here
22 'in uniform' variables not permitted
23 'sk_has_side_effects' is not permitted here
24 'inline' is not permitted here
25 'noinline' is not permitted here
26 'const' variables must be initialized
27 *%%*/