uniform sampler2D texture;


void main() 
{
   	vec2 coord = gl_TexCoord[0].xy;
   



	gl_FragColor = texture2D(texture,coord);
}