vbagx/source/ngc/video.h
2008-09-17 02:27:55 +00:00

24 lines
642 B
C

/****************************************************************************
* Visual Boy Advance GX
*
* Tantric September 2008
* softdev 2007
*
* video.h
*
* Generic GX Support for Emulators
* NGC GX Video Functions
* These are pretty standard functions to setup and use GX scaling.
***************************************************************************/
#ifndef __GXHDR__
#define __GXHDR__
void InitialiseVideo ();
void GX_Render_Init(int width, int height, int haspect, int vaspect);
void GX_Render(int width, int height, u8 * buffer, int pitch);
void clearscreen (int colour = COLOR_BLACK);
void showscreen ();
#endif