Phillip Stephens fcdeb21704 Link nearly all of CARD
Former-commit-id: e3de3f9e5d76c4a65e44d46e5205e2c57e7c5a50
2022-09-10 21:54:54 -07:00

32 lines
556 B
C

#ifndef DOLPHIN_VI_H
#define DOLPHIN_VI_H
#include <dolphin/gx/GXStruct.h>
#include <dolphin/vifuncs.h>
#ifdef __cplusplus
extern "C" {
#endif
void VIInit(void);
void VIConfigure(GXRenderModeObj *rm);
void VIFlush(void);
u32 VIGetTvFormat(void);
void VISetNextFrameBuffer(void *fb);
void VIWaitForRetrace(void);
void VISetBlack(BOOL black);
#ifdef TARGET_PC
void VISetWindowTitle(const char* title);
void VISetWindowFullscreen(bool fullscreen);
bool VIGetWindowFullscreen();
#endif
vu16 __VIRegs[59] : 0xCC002000;
#ifdef __cplusplus
}
#endif
#endif