Merge pull request #4401 from Jalle19/fix-recording-thumbnail
[vuplus_xbmc] / system / shaders / yuv2rgb_basic_2d.arb
1 !!ARBfp1.0
2
3 #
4 #      Copyright (C) 2010-2013 Team XBMC
5 #      http://xbmc.org
6 #
7 #  This Program is free software; you can redistribute it and/or modify
8 #  it under the terms of the GNU General Public License as published by
9 #  the Free Software Foundation; either version 2, or (at your option)
10 #  any later version.
11 #
12 #  This Program is distributed in the hope that it will be useful,
13 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 #  GNU General Public License for more details.
16 #
17 #  You should have received a copy of the GNU General Public License
18 #  along with XBMC; see the file COPYING.  If not, see
19 #  <http://www.gnu.org/licenses/>.
20 #
21 #
22
23 PARAM yuvmat[4] = { program.local[0..3] };
24 TEMP R0;
25 TEMP R1;
26 TEX R0.x, fragment.texcoord[0], texture[0], 2D;
27 TEX R0.y, fragment.texcoord[1], texture[1], 2D;
28 TEX R0.w, fragment.texcoord[2], texture[2], 2D;
29 MOV R0.z, R0.w;
30 DPH R1.r, R0, yuvmat[0];
31 DPH R1.g, R0, yuvmat[1];
32 DPH R1.b, R0, yuvmat[2];
33 MOV R1.a, fragment.color.a;
34 MOV result.color, R1;
35 END