blob: d5dd8da975228a165e925911fcc219827f822040 [file] [log] [blame]
John Kessenich46413d52018-02-26 19:20:05 -07001#version 450
2
3precision highp float;
4
5struct U {
6 mat2 m;
7};
8
9struct T {
10 mat2 m;
11};
12
13struct S {
14 T t;
15 U u;
16};
17
18void main()
19{
20 S s1 = S(T(mat2(1.0)), U(mat2(1.0)));
21 S s2 = S(T(mat2(1.0)), U(mat2(1.0)));
22}