diff options
author | Zack Middleton <zturtleman@gmail.com> | 2015-06-12 14:22:37 -0500 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2016-04-07 11:02:28 +0100 |
commit | 7b1fa0e3cc8c106a08ab8d7e12a0c40d2e2a7791 (patch) | |
tree | 536ffb63ccf7375b1f3c39e1f4ebfaf59e4be6ec /src/renderergl2 | |
parent | 14964e061958f37aff3e4a68f22523df91bdc373 (diff) |
Move image load function prototypes to tr_common.h
The functions themselves are in code/renderercommon/tr_image_*.c
Diffstat (limited to 'src/renderergl2')
-rw-r--r-- | src/renderergl2/tr_local.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/renderergl2/tr_local.h b/src/renderergl2/tr_local.h index 95d87165..76cbe9c7 100644 --- a/src/renderergl2/tr_local.h +++ b/src/renderergl2/tr_local.h @@ -2280,20 +2280,6 @@ int R_IQMLerpTag( orientation_t *tag, iqmData_t *data, /* ============================================================= - -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 ); - -/* -============================================================= ============================================================= */ void R_TransformModelToClip( const vec3_t src, const float *modelMatrix, const float *projectionMatrix, |