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-06.vert
blob
d77a5f9e8920370341fa3bff6a53fe0361a8bbdb
1
#version 120
2
/* PASS */
3
4
uniform mat2 a;
5
6
void main()
7
{
8
mat2 b;
9
10
b = mat2(a);
11
12
gl_Position = gl_Vertex;
13
}