c5e6515e4a
In a few cases, this involved splitting a test into two (an ES2- compatible portion and a ES3+ portion). Change-Id: Ie6f18f787cf7c10696a2841ff538bbe2b95bf50d Bug: skia:13042 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/523187 Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Arman Uguray <armansito@google.com> Commit-Queue: Arman Uguray <armansito@google.com>
16 lines
398 B
Plaintext
16 lines
398 B
Plaintext
struct S {
|
|
const float a;
|
|
uniform int b;
|
|
flat half4 c;
|
|
noperspective float4 d;
|
|
inout bool e;
|
|
};
|
|
|
|
/*%%*
|
|
modifier 'const' is not permitted on a struct field
|
|
modifier 'uniform' is not permitted on a struct field
|
|
modifier 'flat' is not permitted on a struct field
|
|
modifier 'noperspective' is not permitted on a struct field
|
|
modifier 'inout' is not permitted on a struct field
|
|
*%%*/
|