repo.or.cz
/
piglit
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add more structure constructor tests.
[piglit/hramrach.git]
/
tests
/
glslparsertest
/
glsl2
/
constructor-04.vert
blob
19d5e011dea18436dc7115974c1daa85e7fee2b2
1
#version 120
2
/* FAIL - matrix must be only parameter to matrix constructor */
3
4
uniform mat2 a;
5
uniform float x;
6
7
void main()
8
{
9
mat2 b;
10
11
b = mat2(a, x);
12
13
gl_Position = gl_Vertex;
14
}