snes9xgx/source/video.h

45 lines
1.1 KiB
C
Raw Normal View History

/****************************************************************************
2010-01-27 23:20:37 +01:00
* Snes9x Nintendo Wii/Gamecube Port
*
* softdev July 2006
* Michniewski 2008
2018-12-27 00:10:12 +01:00
* Tantric 2008-2019
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>
2010-03-22 00:43:54 +01:00
#include "snes9x/snes9x.h"
2009-03-11 18:28:37 +01:00
void AllocGfxMem();
void InitGCVideo ();
2009-03-11 18:28:37 +01:00
void StopGX();
2009-04-02 07:14:18 +02:00
void ResetVideo_Emu();
void setGFX();
void update_video (int width, int height);
2009-04-02 07:14:18 +02:00
void ResetVideo_Menu();
2009-03-11 18:28:37 +01:00
void TakeScreenshot();
void ClearScreenshot();
2009-04-02 07:14:18 +02:00
void Menu_Render();
2009-03-11 18:28:37 +01:00
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);
2010-04-14 01:34:01 +02:00
extern GXRModeObj *vmode;
2009-03-11 18:28:37 +01:00
extern int screenheight;
extern int screenwidth;
2008-09-11 06:41:58 +02:00
extern bool progressive;
extern u8 * gameScreenPng;
extern int gameScreenPngSize;
extern u32 FrameTimer;
extern bool vmode_60hz;
extern int timerstyle;
2009-06-15 10:23:19 +02:00
extern int CheckVideo;
2008-09-11 06:41:58 +02:00
#endif