• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1### Compilation failed:
2
3error: 7: type 'bool' does not support qualifier 'readonly'
4    readonly bool f;
5    ^^^^^^^^
6error: 8: type 'bool' does not support qualifier 'writeonly'
7    writeonly bool g;
8    ^^^^^^^^^
9error: 2: modifier 'const' is not permitted on a struct field
10    const float a;
11    ^^^^^^^^^^^^^
12error: 3: modifier 'uniform' is not permitted on a struct field
13    uniform int b;
14    ^^^^^^^^^^^^^
15error: 4: modifier 'flat' is not permitted on a struct field
16    flat half4 c;
17    ^^^^^^^^^^^^
18error: 5: modifier 'noperspective' is not permitted on a struct field
19    noperspective float4 d;
20    ^^^^^^^^^^^^^^^^^^^^^^
21error: 6: modifier 'inout' is not permitted on a struct field
22    inout bool e;
23    ^^^^^^^^^^^^
24error: 9: modifier 'buffer' is not permitted on a struct field
25    buffer int h;
26    ^^^^^^^^^^^^
27error: 10: modifier 'pixel_local' is not permitted on a struct field
28    pixel_local float i;
29    ^^^^^^^^^^^^^^^^^^^
309 errors
31