mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 14:52:00 +00:00
Move image load function prototypes to tr_common.h
The functions themselves are in code/renderercommon/tr_image_*.c
This commit is contained in:
parent
e5af084211
commit
f110f668bf
3 changed files with 14 additions and 28 deletions
|
@ -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 );
|
||||
|
||||
/*
|
||||
====================================================================
|
||||
|
||||
|
|
|
@ -1391,20 +1391,6 @@ int R_IQMLerpTag( orientation_t *tag, iqmData_t *data,
|
|||
int startFrame, int endFrame,
|
||||
float frac, const char *tagName );
|
||||
|
||||
/*
|
||||
=============================================================
|
||||
|
||||
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 );
|
||||
|
||||
/*
|
||||
=============================================================
|
||||
=============================================================
|
||||
|
|
|
@ -2276,20 +2276,6 @@ int R_IQMLerpTag( orientation_t *tag, iqmData_t *data,
|
|||
int startFrame, int endFrame,
|
||||
float frac, const char *tagName );
|
||||
|
||||
/*
|
||||
=============================================================
|
||||
|
||||
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 );
|
||||
|
||||
/*
|
||||
=============================================================
|
||||
=============================================================
|
||||
|
|
Loading…
Reference in a new issue