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
/
const-mat-scalar-03.frag
blob
256e54748b8da21f19be740cbc8b5513a1116d91
1
void main()
2
{
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;
6
}