2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Snes9x 1.50
|
|
|
|
*
|
|
|
|
* Nintendo Gamecube Video
|
|
|
|
*
|
|
|
|
* This is a modified renderer from the Genesis Plus Project.
|
|
|
|
* Well - you didn't expect me to write another one did ya ? -;)
|
|
|
|
*
|
|
|
|
* softdev July 2006
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef _GCVIDEOH_
|
|
|
|
|
|
|
|
#define _GCVIDEOH_
|
2008-08-06 03:39:43 +02:00
|
|
|
//#include <gccore.h>
|
|
|
|
#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
|
|
|
|
|
|
|
#endif
|