void main () {
	vec4 c;
    c.x  = gl_FragCoord.y;
	c.yzw = vec3(4.0,5.0,6.0);
	gl_FragColor = c;
}
