aboutsummaryrefslogtreecommitdiffstats
path: root/code/renderer/tr_local.h
diff options
context:
space:
mode:
Diffstat (limited to 'code/renderer/tr_local.h')
-rw-r--r--code/renderer/tr_local.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/code/renderer/tr_local.h b/code/renderer/tr_local.h
index 5354bc7..ec5ff91 100644
--- a/code/renderer/tr_local.h
+++ b/code/renderer/tr_local.h
@@ -1483,6 +1483,20 @@ void RB_MDRSurfaceAnim( md4Surface_t *surface );
/*
=============================================================
+
+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,