Move image load function prototypes to tr_common.h

The functions themselves are in code/renderercommon/tr_image_*.c
This commit is contained in:
Zack Middleton 2015-06-12 14:22:37 -05:00
parent e5af084211
commit f110f668bf
3 changed files with 14 additions and 28 deletions

View file

@ -134,6 +134,20 @@ void R_InitFreeType( void );
void R_DoneFreeType( void );
void RE_RegisterFont(const char *fontName, int pointSize, fontInfo_t *font);
/*
=============================================================
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 );
/*
====================================================================