#version 110


attribute vec2 myVertex;
attribute vec2 myTexCoord;

varying vec2 texCoord;

void main()
{
    texCoord = myTexCoord;
	gl_Position = vec4(myVertex.x, myVertex.y, 0.0, 1.0);


}
