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-vec-scalar-05.frag
blob
de994c0c2af0d79d8a675de84d5160a7b31de2b5
1
#version 120
2
void main()
3
{
4
const vec4 t1 = vec4(-1.0, 0.0, -1.0, -1.0);
5
const int one = 1;
6
const vec4 c2 = one + t1;
7
gl_FragColor = c2;
8
}