glslang front-end: Full turn-on of AEP tessellation semantics.
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@31538 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
parent
105704eff2
commit
6e76bdc88d
18 changed files with 1000 additions and 97 deletions
|
|
@ -51,14 +51,14 @@ patch sample in vec3 badp4; // ERROR
|
|||
|
||||
#extension GL_ARB_separate_shader_objects : enable
|
||||
|
||||
in gl_PerVertex
|
||||
in gl_PerVertex // ERROR, no size
|
||||
{
|
||||
float gl_ClipDistance[1];
|
||||
} gl_in[]; // ERROR, no size
|
||||
float gl_ClipDistance[1];
|
||||
} gl_in[];
|
||||
|
||||
in gl_PerVertex
|
||||
in gl_PerVertex // ERROR, second redeclaration of gl_in
|
||||
{
|
||||
float gl_ClipDistance[1];
|
||||
float gl_ClipDistance[1];
|
||||
} gl_in[];
|
||||
|
||||
layout(quads, cw) out; // ERROR
|
||||
|
|
@ -98,7 +98,7 @@ layout(location = 24) in vec4 ivlc[]; // ERROR
|
|||
layout(location = 23) out vec4 ovla[2];
|
||||
layout(location = 24) out vec4 ovlb[2]; // ERROR
|
||||
|
||||
in float gl_TessLevelOuter[4]; // ERROR
|
||||
in float gl_TessLevelOuter[4]; // ERROR, can't redeclare
|
||||
|
||||
patch in pinbn {
|
||||
int a;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue