blob: d024c7dbff0913d4d66264b7101a5a07fe232c64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* PARSEC HEADER: vsdl_suppo.h
*/
#ifndef _VSDL_SUPPO_H_
#define _VSDL_SUPPO_H_
// vm_suppa.c implements the following functions
// ---------------------------------------------
// int VIDs_FadeScreenFromBlack( int palno );
// int VIDs_FadeScreenToBlack( int palno, int fademusic );
// int VIDs_FadePaletteToBlack( char *palette, int fademusic );
// int VIDs_FadeScreenFromWhite( int palno );
// int VIDs_SetScreenToColor( colrgba_s col );
// int VIDs_SetScreenDazzle( float strength );
// int VIDs_SetColIndexZero( int color );
// int VIDs_SetGammaCorrection( float gamma );
#endif
|