1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-06-25 22:09:35 +00:00
GLideN64/src/VI.h
2017-03-16 18:50:14 +07:00

27 lines
432 B
C

#ifndef VI_H
#define VI_H
#include "Types.h"
struct VIInfo
{
u32 width, widthPrev, height, real_height;
f32 rwidth, rheight;
u32 lastOrigin;
bool interlaced;
bool PAL;
VIInfo() :
width(0), widthPrev(0), height(0), real_height(0), rwidth(0), rheight(0),
lastOrigin(-1), interlaced(false), PAL(false)
{}
};
extern VIInfo VI;
void VI_UpdateSize();
void VI_UpdateScreen();
u16 VI_GetMaxBufferHeight(u16 _width);
#endif