00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef _VIDEO_H_
00010 #define _VIDEO_H_
00011
00012 #include <ogcsys.h>
00013
00014 void InitVideo ();
00015 void StopGX();
00016 void ResetVideo_Menu();
00017 void Menu_Render();
00018 void Menu_DrawImg(f32 xpos, f32 ypos, u16 width, u16 height, u8 data[], f32 degrees, f32 scaleX, f32 scaleY, u8 alpha, u16 displayWidth = 0, u16 displayHeight = 0);
00019 void Menu_DrawRectangle(f32 x, f32 y, f32 width, f32 height, GXColor color, u8 filled);
00020
00021 extern int screenheight;
00022 extern int screenwidth;
00023 extern u32 FrameTimer;
00024
00025 #endif