Import SDK Types
This commit is contained in:
parent
84b3e69630
commit
4fe4c38e0d
86 changed files with 6528 additions and 27 deletions
31
include/dolphin/vi.h
Normal file
31
include/dolphin/vi.h
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
#ifndef _DOLPHIN_VI
|
||||
#define _DOLPHIN_VI
|
||||
|
||||
#include <dolphin/gx/GXStruct.h>
|
||||
#include <dolphin/vifuncs.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void VIInit(void);
|
||||
void VIConfigure(const 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
|
||||
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // _DOLPHIN_VI
|
||||
Loading…
Add table
Add a link
Reference in a new issue