blob: 9f478ed3da174e2d17785ade3078c5362f88ded3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* Copyright (C) 2019 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#version 100
precision mediump float;
uniform sampler2D m_samp0;
varying vec4 m_cord0;
void main ()
{
vec3 rgb = texture2D(m_samp0, m_cord0.xy).rgb;
#if defined(KODI_LIMITED_RANGE)
rgb *= (235.0 - 16.0) / 255.0;
rgb += 16.0 / 255.0;
#endif
gl_FragColor = vec4(rgb, 1.0);
}
|