GLES2N64 (from mupen64plus-ae) plugin. Compile and run on the OpenPandora
[mupen64plus-pandora.git] / source / gles2n64 / src / VI.h
1 #ifndef VI_H
2 #define VI_H
3 #include "Types.h"
4
5 struct VIInfo
6 {
7     u32 width, height;
8     f32 rwidth, rheight;
9     u32 lastOrigin;
10
11     u32 realWidth, realHeight;
12
13     struct{
14         u32 start, end;
15     } display[16];
16
17     u32 displayNum;
18
19 };
20
21 extern VIInfo VI;
22
23 void VI_UpdateSize();
24 void VI_UpdateScreen();
25
26 #endif
27