snes9xgx/source/ngc/video.h

43 lines
982 B
C
Raw Normal View History

/****************************************************************************
* Snes9x 1.51 Nintendo Wii/Gamecube Port
*
* softdev July 2006
2008-09-23 06:13:33 +02:00
* Michniewski 2008
2008-09-11 06:41:58 +02:00
*
* video.h
*
* Video routines
***************************************************************************/
#ifndef _GCVIDEOH_
#define _GCVIDEOH_
2008-09-11 06:41:58 +02:00
#include <ogcsys.h>
#include "snes9x.h"
2009-03-11 18:28:37 +01:00
void AllocGfxMem();
void FreeGfxMem();
void InitGCVideo ();
2009-03-11 18:28:37 +01:00
void StopGX();
void ResetVideo_Emu ();
void setGFX ();
void update_video (int width, int height);
void zoom (float speed);
void zoom_reset ();
2009-03-11 18:28:37 +01:00
void ResetVideo_Menu ();
void TakeScreenshot();
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, u8 filled);
extern int screenheight;
extern int screenwidth;
2008-09-11 06:41:58 +02:00
extern bool progressive;
2009-03-11 18:28:37 +01:00
extern u8 * gameScreenTex;
extern u8 * gameScreenTex2;
2008-09-11 06:41:58 +02:00
#endif