1 #ifdef GL_ES
2 precision mediump float;
3 #endif
4
5 varying vec4 vcolor;
6
7
8 void main()
9 {
10 gl_FragColor = vcolor;
11 }