precision mediump float; 

// Interpolated values from the vertex shaders
varying vec2 UV;



// Values that stay constant for the whole pl.rjuszczyk.panorama.mesh.
uniform sampler2D myTextureSampler;

void main(){
	vec4 color = texture2D( myTextureSampler, UV );
	gl_FragColor  = color;
}