Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / const-mat-scalar-03.frag
blob256e54748b8da21f19be740cbc8b5513a1116d91
1 void main()
3    const mat2 c1 = mat2(1.0, 0.0, 0.0, 1.0);
4    const mat2 c2 = 2.0 * c1;
5    const mat2 c3 = c2 * 0.5;