droid: Add Android MediaCodec for DVDPlayer
[vuplus_xbmc] / xbmc / guilib / GUIShader.h
1 /*
2  *      Copyright (C) 2005-2013 Team XBMC
3  *      http://xbmc.org
4  *
5  *  This Program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This Program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with XBMC; see the file COPYING.  If not, see
17  *  <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 #ifndef GUI_SHADER_H
22 #define GUI_SHADER_H
23
24 #pragma once
25
26 #include "Shader.h"
27
28 using namespace Shaders;
29
30 class CGUIShader : public CGLSLShaderProgram
31 {
32 public:
33   CGUIShader( const char *shader = 0 );
34   void OnCompiledAndLinked();
35   bool OnEnabled();
36   void Free();
37
38   GLint GetPosLoc()   { return m_hPos;   }
39   GLint GetColLoc()   { return m_hCol;   }
40   GLint GetCord0Loc() { return m_hCord0; }
41   GLint GetCord1Loc() { return m_hCord1; }
42   GLint GetUniColLoc() { return m_hUniCol; }
43   GLint GetCoord0MatrixLoc() { return m_hCoord0Matrix; }
44
45 protected:
46   GLint m_hTex0;
47   GLint m_hTex1;
48   GLint m_hUniCol;
49   GLint m_hProj;
50   GLint m_hModel;
51   GLint m_hPos;
52   GLint m_hCol;
53   GLint m_hCord0;
54   GLint m_hCord1;
55   GLint m_hCoord0Matrix;
56
57   GLfloat *m_proj;
58   GLfloat *m_model;
59 };
60
61 #endif // GUI_SHADER_H