mirror of
https://github.com/ioquake/jedi-outcast.git
synced 2024-11-10 15:22:09 +00:00
22 lines
807 B
C
22 lines
807 B
C
// piclib.h
|
|
|
|
|
|
void LoadLBM (char *filename, byte **picture, byte **palette);
|
|
void WriteLBMfile (char *filename, byte *data, int width, int height
|
|
, byte *palette);
|
|
void LoadPCX (char *filename, byte **picture, byte **palette, int *width, int *height);
|
|
void WritePCXfile (char *filename, byte *data, int width, int height
|
|
, byte *palette);
|
|
|
|
// loads / saves either lbm or pcx, depending on extension
|
|
void Load256Image (char *name, byte **pixels, byte **palette,
|
|
int *width, int *height);
|
|
void Save256Image (char *name, byte *pixels, byte *palette,
|
|
int width, int height);
|
|
|
|
|
|
void LoadTGA (char *filename, byte **pixels, int *width, int *height);
|
|
void WriteTGA (char *filename, byte *data, int width, int height);
|
|
|
|
void Load32BitImage (char *name, unsigned **pixels, int *width, int *height);
|
|
|