EndStreamPrimitive not supported when there is #extension GL_ARB_gpu_shader5
[platform/upstream/glslang.git] / Test / iomap.variableOutBlockIn.vert
1 #version 440\r
2 \r
3 layout(location = 0) out vec4 a1;\r
4 layout(location = 1) out vec2 a2;\r
5 \r
6 void main()\r
7 {\r
8     a1 = vec4(1.0);\r
9     a2 = vec2(0.5);\r
10     gl_Position = vec4(1.0);\r
11 }\r