summaryrefslogtreecommitdiffstats
path: root/system/shaders/GL/1.5/gl_shader_frag_texture_lim.glsl
blob: def4349d24915938c56e6844ccf28ce0d3ae5584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#version 150

uniform sampler2D m_samp0;
uniform vec4 m_unicol;
in vec4 m_cord0;
out vec4 fragColor;

// SM_TEXTURE shader
void main ()
{
  fragColor.rgba = vec4(texture(m_samp0, m_cord0.xy).rgba * m_unicol);
#if !defined(KODI_LIMITED_RANGE)
  fragColor.rgb = clamp((fragColor.rgb-(16.0/255.0)) * 255.0/219.0, 0, 1);
#endif
}