ES check for vertex out or fragment in containing any of
• An array of arrays • An array of structures • A structure containing an array • A structure containing a structure git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@28745 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
parent
ad54b24fba
commit
b07957cf22
9 changed files with 163 additions and 6 deletions
|
|
@ -103,3 +103,15 @@ out bool bout; // ERROR
|
|||
out image2D imageOut; // ERROR
|
||||
out mat2x3 mout; // ERROR
|
||||
|
||||
in bool inb; // ERROR
|
||||
in sampler2D ino; // ERROR
|
||||
in float ina[4];
|
||||
in float inaa[4][2]; // ERROR
|
||||
struct S { float f; };
|
||||
in S ins;
|
||||
in S[4] inasa; // ERROR
|
||||
in S insa[4]; // ERROR
|
||||
struct SA { float f[4]; };
|
||||
in SA inSA; // ERROR
|
||||
struct SS { float f; S s; };
|
||||
in SS inSS; // ERROR
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue