2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2008-09-12 07:28:40 +02:00
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
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>
|
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
#include "snes9x.h"
|
|
|
|
|
|
|
|
void InitGCVideo ();
|
2008-08-24 01:15:58 +02:00
|
|
|
void ResetVideo_Emu ();
|
|
|
|
void ResetVideo_Menu ();
|
2008-08-06 03:09:59 +02:00
|
|
|
void setGFX ();
|
|
|
|
void update_video (int width, int height);
|
2008-08-24 01:15:58 +02:00
|
|
|
void clearscreen (int colour = COLOR_BLACK);
|
|
|
|
void showscreen ();
|
2008-08-06 03:09:59 +02:00
|
|
|
void zoom (float speed);
|
2008-08-24 01:15:58 +02:00
|
|
|
void zoom_reset ();
|
2008-08-06 03:09:59 +02:00
|
|
|
|
2008-09-11 06:41:58 +02:00
|
|
|
extern bool progressive;
|
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
#endif
|