vbagx/source/ngc/video.h

25 lines
659 B
C
Raw Normal View History

2008-09-14 22:40:26 +02:00
/****************************************************************************
2008-09-17 04:27:55 +02:00
* 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.
***************************************************************************/
2008-09-14 22:40:26 +02:00
#ifndef __GXHDR__
#define __GXHDR__
void InitialiseVideo ();
2008-09-26 03:01:08 +02:00
void GX_Start();
void GX_Render_Init(int width, int height, int haspect, int vaspect);
2008-09-14 22:40:26 +02:00
void GX_Render(int width, int height, u8 * buffer, int pitch);
void clearscreen (int colour = COLOR_BLACK);
void showscreen ();
2008-09-14 22:40:26 +02:00
#endif