mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-08 17:30:39 +00:00
24 lines
396 B
C
24 lines
396 B
C
|
|
||
|
#ifndef __light_h__
|
||
|
#define __light_h__
|
||
|
|
||
|
void MyLoadPalette();
|
||
|
int LoadPaletteLookups();
|
||
|
void WaitVBL();
|
||
|
void SetGreenPal();
|
||
|
void RestoreGreenPal();
|
||
|
void FixPalette();
|
||
|
void FadeToWhite();
|
||
|
|
||
|
extern void DoOverscanSet(short someval);
|
||
|
void SetOverscan(unsigned char *palette);
|
||
|
|
||
|
extern unsigned char kenpal[];
|
||
|
extern short overscanindex;
|
||
|
|
||
|
extern char *origpalookup[];
|
||
|
|
||
|
extern short nPalDiff;
|
||
|
|
||
|
#endif
|