1struct S { 2 const float a; 3 uniform int b; 4 flat half4 c; 5 noperspective float4 d; 6 inout bool e; 7 readonly bool f; 8 writeonly bool g; 9 buffer int h; 10}; 11 12/*%%* 13type 'bool' does not support qualifier 'readonly' 14type 'bool' does not support qualifier 'writeonly' 15modifier 'const' is not permitted on a struct field 16modifier 'uniform' is not permitted on a struct field 17modifier 'flat' is not permitted on a struct field 18modifier 'noperspective' is not permitted on a struct field 19modifier 'inout' is not permitted on a struct field 20modifier 'buffer' is not permitted on a struct field 21*%%*/ 22