varying highp vec2 texcoord;

uniform sampler2D basetexture;

void main(void)
{
	mediump vec4 texlookup = texture2D(basetexture, texcoord);

	gl_FragColor = texlookup;
}
