2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2008-10-16 03:48:08 +02:00
|
|
|
* Snes9x 1.50
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
2008-10-16 03:48:08 +02:00
|
|
|
* Nintendo Gamecube Video
|
2008-09-11 06:41:58 +02:00
|
|
|
*
|
2008-10-16 03:48:08 +02:00
|
|
|
* This is a modified renderer from the Genesis Plus Project.
|
|
|
|
* Well - you didn't expect me to write another one did ya ? -;)
|
2008-09-11 06:41:58 +02:00
|
|
|
*
|
2008-10-16 03:48:08 +02:00
|
|
|
* softdev July 2006
|
|
|
|
****************************************************************************/
|
2008-08-06 03:09:59 +02:00
|
|
|
#ifndef _GCVIDEOH_
|
|
|
|
|
|
|
|
#define _GCVIDEOH_
|
|
|
|
#include "snes9x.h"
|
|
|
|
|
|
|
|
void InitGCVideo ();
|
2008-10-16 03:48:08 +02:00
|
|
|
void clearscreen ();
|
|
|
|
void showscreen ();
|
2008-08-06 03:09:59 +02:00
|
|
|
void setGFX ();
|
|
|
|
void update_video (int width, int height);
|
|
|
|
void zoom (float speed);
|
2008-09-23 05:49:57 +02:00
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
#endif
|