snes9xgx/source/ngc/video.h

32 lines
613 B
C
Raw Normal View History

/****************************************************************************
* Snes9x 1.51 Nintendo Wii/Gamecube Port
*
* softdev July 2006
2008-09-11 06:41:58 +02:00
*
* video.h
*
* Video routines
***************************************************************************/
#ifndef _GCVIDEOH_
#define _GCVIDEOH_
2008-09-11 06:41:58 +02:00
#include <ogcsys.h>
#include "snes9x.h"
void InitGCVideo ();
void ResetVideo_Emu ();
void ResetVideo_Menu ();
void setGFX ();
void update_video (int width, int height);
void clearscreen (int colour = COLOR_BLACK);
void showscreen ();
void zoom (float speed);
void zoom_reset ();
2008-09-11 06:41:58 +02:00
extern bool progressive;
#endif