cl: Don't use device_infos if num_device_infos == 0
[piglit.git] / tests / glslparsertest / glsl2 / matrix-09.vert
blob01b435beaf73e88ccc23a7ac5ba021d3df5093f0
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.10
4 //
5 // [end config]
7 /* FAIL - matrix-to-matrix constructors are not available in GLSL 1.10 */
9 uniform mat3 a;
11 void main()
13     mat2 m;
15     m = mat2(a);
16     gl_Position = gl_Vertex;