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-04.frag
blob
0d2945d4afa33ca183243e320142f1e3e19b6f1b
1
void main()
2
{
3
const vec4 c1 = vec4(4.0, 4.0, 4.0, 4.0);
4
const vec4 c2 = 2.0 / c1;
5
const vec4 c3 = c2 / 0.5;
6
gl_FragColor = c3;
7
}