#ifndef _IN_VIDEO_H #define _IN_VIDEO_H #include #include s32 videoInit(void); void videoStartFrame(void); void videoSubmitCommands(Gfx *cmds); void videoClearScreen(void); void videoEndFrame(void); void *videoGetWindowHandle(void); void videoUpdateNativeResolution(s32 w, s32 h); s32 videoGetNativeWidth(void); s32 videoGetNativeHeight(void); s32 videoGetWidth(void); s32 videoGetHeight(void); f32 videoGetAspect(void); f32 videoGetPlayerFovY(void); void videoResetTextureCache(void); #endif