mirror of
https://github.com/RPCS3/glslang.git
synced 2024-11-28 13:40:41 +00:00
2f47bc9781
This fixes issue #360.
21 lines
435 B
GLSL
21 lines
435 B
GLSL
#version 450 core
|
|
|
|
layout(vertices = 4) out;
|
|
|
|
patch out vec4 patchOut;
|
|
|
|
struct S {
|
|
float sMem1; // should not see a patch decoration
|
|
float sMem2; // should not see a patch decoration
|
|
};
|
|
|
|
layout(location = 12) patch out TheBlock {
|
|
highp float bMem1; // should not see a location decoration
|
|
highp float bMem2;
|
|
S s; // should see a patch decoration
|
|
} tcBlock[2];
|
|
|
|
void main()
|
|
{
|
|
}
|