2009-05-03 20:53:31 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* libwiigui Template
|
|
|
|
* Tantric 2009
|
|
|
|
*
|
|
|
|
* video.h
|
|
|
|
* Video routines
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _VIDEO_H_
|
|
|
|
#define _VIDEO_H_
|
|
|
|
|
|
|
|
#include <ogcsys.h>
|
|
|
|
|
|
|
|
void InitVideo ();
|
|
|
|
void StopGX();
|
|
|
|
void ResetVideo_Menu();
|
|
|
|
void Menu_Render();
|
2009-07-19 19:48:15 +02:00
|
|
|
void Menu_DrawImg(f32 xpos, f32 ypos, f32 zpos, f32 width, f32 height, u8 data[],
|
2009-07-30 07:41:12 +02:00
|
|
|
f32 degrees, f32 scaleX, f32 scaleY, u8 alphaF ,int XX1, int YY1,int XX2, int YY2,int XX3, int YY3,int XX4, int YY4);
|
|
|
|
void Menu_DrawTPLImg(f32 xpos, f32 ypos, f32 zpos, f32 width, f32 height, GXTexObj *texObj,
|
|
|
|
f32 degrees, f32 scaleX, f32 scaleY, u8 alpha, int XX1, int YY1,int XX2, int YY2,int XX3, int YY3,int XX4, int YY4);
|
2009-05-03 20:53:31 +02:00
|
|
|
void Menu_DrawRectangle(f32 x, f32 y, f32 width, f32 height, GXColor color, u8 filled);
|
|
|
|
|
|
|
|
extern int screenheight;
|
|
|
|
extern int screenwidth;
|
2009-05-23 00:36:55 +02:00
|
|
|
extern u32 frameCount;
|
2009-05-03 20:53:31 +02:00
|
|
|
|
|
|
|
#endif
|