mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-12-04 08:24:19 +01:00
24 lines
571 B
C
24 lines
571 B
C
/****************************************************************************
|
|
* 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_
|
|
#include "snes9x.h"
|
|
|
|
void InitGCVideo ();
|
|
void clearscreen ();
|
|
void showscreen ();
|
|
void setGFX ();
|
|
void update_video (int width, int height);
|
|
void zoom (float speed);
|
|
|
|
#endif
|