mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 15:05:05 +01:00
47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
/****************************************************************************
|
|
* FCE Ultra
|
|
* Nintendo Wii/Gamecube Port
|
|
*
|
|
* Tantric 2008-2009
|
|
*
|
|
* gcvideo.h
|
|
*
|
|
* Video rendering
|
|
****************************************************************************/
|
|
|
|
#ifndef _GCVIDEO_H_
|
|
#define _GCVIDEO_H_
|
|
|
|
// color palettes
|
|
#define MAXPAL 12
|
|
|
|
struct st_palettes {
|
|
char name[32], desc[32];
|
|
unsigned int data[64];
|
|
};
|
|
|
|
void InitGCVideo ();
|
|
void StopGX();
|
|
void ResetVideo_Emu ();
|
|
void RenderFrame(unsigned char *XBuf);
|
|
void setFrameTimer();
|
|
void zoom (float speed);
|
|
void zoom_reset ();
|
|
void SetPalette();
|
|
void ResetVideo_Menu ();
|
|
void TakeScreenshot();
|
|
void Menu_Render ();
|
|
void Menu_DrawImg(f32 xpos, f32 ypos, u16 width, u16 height, u8 data[], f32 degrees, f32 scaleX, f32 scaleY, u8 alphaF );
|
|
void Menu_DrawRectangle(f32 x, f32 y, f32 width, f32 height, GXColor color, u8 filled);
|
|
|
|
extern int screenheight;
|
|
extern int screenwidth;
|
|
extern u8 * gameScreenTex;
|
|
extern u8 * gameScreenTex2;
|
|
extern struct st_palettes palettes[];
|
|
extern int FDSSwitchRequested;
|
|
extern bool progressive;
|
|
extern u32 FrameTimer;
|
|
|
|
#endif
|