1uniform sampler2D tex1;
2
3void main()
4{
5   gl_FragColor = texture2D(tex1, gl_Color.xy);
6}
7