2008-09-02 03:57:21 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* FCE Ultra 0.98.12
|
|
|
|
* Nintendo Wii/Gamecube Port
|
|
|
|
*
|
|
|
|
* Tantric September 2008
|
|
|
|
*
|
|
|
|
* gcvideo.h
|
|
|
|
*
|
|
|
|
* Video rendering
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _GCVIDEO_H_
|
|
|
|
#define _GCVIDEO_H_
|
|
|
|
|
|
|
|
void clearscreen ();
|
|
|
|
void showscreen ();
|
|
|
|
void initDisplay();
|
|
|
|
void RenderFrame(char *XBuf, int style);
|
2008-10-22 01:07:16 +02:00
|
|
|
void setFrameTimer();
|
2008-09-02 03:57:21 +02:00
|
|
|
|
|
|
|
// color palettes
|
|
|
|
#define MAXPAL 12
|
|
|
|
|
|
|
|
struct st_palettes {
|
|
|
|
char *name, *desc;
|
|
|
|
unsigned int data[64];
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct st_palettes palettes[];
|
2008-10-08 06:53:06 +02:00
|
|
|
extern int FDSSwitchRequested;
|
2008-10-21 09:50:37 +02:00
|
|
|
extern int vmode_60hz;
|
|
|
|
extern bool progressive;
|
2008-09-02 03:57:21 +02:00
|
|
|
|
|
|
|
#endif
|