2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2010-01-27 23:20:37 +01:00
|
|
|
* Snes9x Nintendo Wii/Gamecube Port
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
2009-04-22 20:21:37 +02:00
|
|
|
* Michniewski 2008
|
2023-01-30 22:07:14 +01:00
|
|
|
* Tantric 2008-2023
|
2008-09-11 06:41:58 +02:00
|
|
|
*
|
|
|
|
* video.h
|
|
|
|
*
|
|
|
|
* Video routines
|
2008-09-12 07:28:40 +02:00
|
|
|
***************************************************************************/
|
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
#ifndef _GCVIDEOH_
|
|
|
|
#define _GCVIDEOH_
|
2008-09-11 06:41:58 +02:00
|
|
|
|
2008-08-06 03:39:43 +02:00
|
|
|
#include <ogcsys.h>
|
|
|
|
|
2010-03-22 00:43:54 +01:00
|
|
|
#include "snes9x/snes9x.h"
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2009-03-11 18:28:37 +01:00
|
|
|
void AllocGfxMem();
|
2008-08-06 03:09:59 +02:00
|
|
|
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();
|
2008-08-06 03:09:59 +02:00
|
|
|
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();
|
2019-03-03 00:38:41 +01:00
|
|
|
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;
|
2010-06-04 01:15:34 +02:00
|
|
|
extern u8 * gameScreenPng;
|
|
|
|
extern int gameScreenPngSize;
|
2009-05-25 08:47:37 +02:00
|
|
|
extern u32 FrameTimer;
|
2016-02-06 22:40:46 +01:00
|
|
|
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
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
#endif
|