mirror of
https://github.com/ioquake/ioq3.git
synced 2025-06-01 09:22:40 +00:00
21 lines
571 B
C
21 lines
571 B
C
|
#ifndef IMAGE_LOADER_H_
|
||
|
#define IMAGE_LOADER_H_
|
||
|
|
||
|
|
||
|
/*
|
||
|
=============================================================
|
||
|
|
||
|
IMAGE LOADERS
|
||
|
|
||
|
=============================================================
|
||
|
*/
|
||
|
|
||
|
void R_LoadBMP( const char *name, byte **pic, int *width, int *height );
|
||
|
void R_LoadJPG( const char *name, byte **pic, int *width, int *height );
|
||
|
void R_LoadPCX( const char *name, byte **pic, int *width, int *height );
|
||
|
void R_LoadPNG( const char *name, byte **pic, int *width, int *height );
|
||
|
void R_LoadTGA( const char *name, byte **pic, int *width, int *height );
|
||
|
|
||
|
|
||
|
#endif
|