* Consolidate tr_image_*.h headers into tr_local.h to more closely follow the

Q3 coding style
* Prefix image loaders with R_ now they're non-static
This commit is contained in:
Tim Angus 2008-02-14 13:16:13 +00:00
parent 84f32478b9
commit a5b51a95d7
12 changed files with 25 additions and 23 deletions

View file

@ -33,7 +33,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define JPEG_INTERNALS
#include "../jpeg-6/jpeglib.h"
void LoadJPG( const char *filename, unsigned char **pic, int *width, int *height ) {
void R_LoadJPG( const char *filename, unsigned char **pic, int *width, int *height ) {
/* This struct contains the JPEG decompression parameters and pointers to
* working space (which is allocated as needed by the JPEG library).
*/