1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00
GLideN64/VI.h
2015-05-13 10:09:12 +06:00

18 lines
177 B
C

#ifndef VI_H
#define VI_H
#include "Types.h"
struct VIInfo
{
u32 width, height;
u32 lastOrigin;
};
extern VIInfo VI;
void VI_UpdateSize();
void VI_UpdateScreen();
#endif