EndStreamPrimitive not supported when there is #extension GL_ARB_gpu_shader5
[platform/upstream/glslang.git] / Test / spv.constStruct.vert
1 #version 450\r
2 \r
3 precision highp float;\r
4 \r
5 struct U {\r
6     mat2 m;\r
7 };\r
8 \r
9 struct T {\r
10     mat2 m;\r
11 };\r
12 \r
13 struct S {\r
14     T t;\r
15     U u;\r
16 };\r
17 \r
18 void main()\r
19 {\r
20     S s1 = S(T(mat2(1.0)), U(mat2(1.0)));\r
21     S s2 = S(T(mat2(1.0)), U(mat2(1.0)));\r
22 }\r