xref: /aosp_15_r20/external/skia/resources/sksl/errors/BadModifiers.sksl (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1const in out uniform flat noperspective $pure inline noinline readonly writeonly pixel_local
2buffer void func1() {}
3
4void func2(const in out uniform flat noperspective $pure
5           inline noinline readonly writeonly buffer pixel_local float test) {}
6
7const in out uniform flat noperspective $pure inline noinline readonly writeonly pixel_local
8buffer float var;
9
10const in out uniform flat noperspective $pure inline noinline readonly writeonly pixel_local
11buffer MyInterfaceBlock { float var; };
12
13/*%%*
14type 'void' does not support qualifier 'readonly writeonly'
15'const' is not permitted here
16'in' is not permitted here
17'out' is not permitted here
18'uniform' is not permitted here
19'flat' is not permitted here
20'noperspective' is not permitted here
21'$pure' is not permitted here
22'buffer' is not permitted here
23'pixel_local' is not permitted here
24functions cannot be both 'inline' and 'noinline'
25type 'float' does not support qualifier 'readonly writeonly'
26'uniform' is not permitted here
27'flat' is not permitted here
28'noperspective' is not permitted here
29'$pure' is not permitted here
30'inline' is not permitted here
31'noinline' is not permitted here
32'buffer' is not permitted here
33'pixel_local' is not permitted here
34type 'float' does not support qualifier 'readonly writeonly'
35'in uniform' variables not permitted
36'uniform buffer' variables not permitted
37'$pure' is not permitted here
38'inline' is not permitted here
39'noinline' is not permitted here
40'buffer' is not permitted here
41'pixel_local' is not permitted here
42'const' variables must be initialized
43'in uniform' variables not permitted
44'readonly' and 'writeonly' qualifiers cannot be combined
45'uniform buffer' variables not permitted
46'$pure' is not permitted here
47'inline' is not permitted here
48'noinline' is not permitted here
49'pixel_local' is not permitted here
50*%%*/
51