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-02.frag
blob
2d455c321e652e10966ce48140acbd6a699db6d4
1
void main()
2
{
3
const vec4 c1 = vec4(0.5, -0.5, 0.5, -0.5);
4
const vec4 c2 = 1.0 - c1;
5
const vec4 c3 = c2 - 0.5;
6
gl_FragColor = c3;
7
}