repo.or.cz
/
piglit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cl: Don't use device_infos if num_device_infos == 0
[piglit.git]
/
tests
/
glslparsertest
/
glsl2
/
matrix-09.vert
blob
01b435beaf73e88ccc23a7ac5ba021d3df5093f0
1
// [config]
2
// expect_result: fail
3
// glsl_version: 1.10
4
//
5
// [end config]
6
7
/* FAIL - matrix-to-matrix constructors are not available in GLSL 1.10 */
8
9
uniform mat3 a;
10
11
void main()
12
{
13
mat2 m;
14
15
m = mat2(a);
16
gl_Position = gl_Vertex;
17
}