attribute vec3 vertex;
attribute vec2 uv0;

varying vec2 texCoords;

void main(void)
{
   gl_Position = vec4(vertex, 1.0);   
   texCoords = uv0;
}
