mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 15:15:09 +01:00
28 lines
771 B
C
28 lines
771 B
C
/****************************************************************************
|
|
* 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();
|
|
void Menu_DrawImg(f32 xpos, f32 ypos, u16 width, u16 height, u8 data[], f32 degrees, f32 scaleX, f32 scaleY, u8 alphaF );
|
|
void Menu_DrawRectangle(f32 x, f32 y, f32 width, f32 height, GXColor * color, bool multicolor, bool filled);
|
|
|
|
extern int screenheight;
|
|
extern int screenwidth;
|
|
extern u32 frameCount;
|
|
|
|
void stretch(int oben, int unten, int links, int rechts);
|
|
s32 TakeScreenshot(const char *path);
|
|
#endif
|