Added missing launcher
[mupen64plus-pandora.git] / source / mupen64plus-video-arachnoid / src / VI.h
1 /******************************************************************************
2  * Arachnoid Graphics Plugin for Mupen64Plus
3  * http://bitbucket.org/wahrhaft/mupen64plus-video-arachnoid/
4  *
5  * Copyright (C) 2007 Kristofer Karlsson, Rickard Niklasson
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) 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 this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20  *****************************************************************************/
21
22 #ifndef VIDEO_INTERFACE_H_
23 #define VIDEO_INTERFACE_H_
24
25 //Forward declarations
26 #define M64P_PLUGIN_PROTOTYPES 1
27 #include "UCodeDefs.h"
28 #include "m64p_plugin.h"
29
30 //*****************************************************************************
31 //! Video Interface
32 //*****************************************************************************
33 class VI
34 {
35 public:
36
37     //Constructor
38     VI();
39     ~VI();
40
41     //Calculate height and width
42     void calcSize(GFX_INFO*  graphicsInfo);
43
44     //Get Height and Width
45     unsigned int getWidth() { return m_width; }
46     unsigned int getHeight() { return m_height; }
47
48 private:
49
50     unsigned int m_width;   //!< Width of video interface viewport
51     unsigned int m_height;  //!< Height of video interface viewport
52
53 };
54
55 #endif