#version 150
uniform sampler2D cover;
out vec4 fragColor;
in vec2 vUV;
void main()
{
fragColor.x = abs(texture(cover, vUV).x);
}