]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - image.h
static crosshair is now drawn during sbar stage (where it should be), fixes the bug...
[xonotic/darkplaces.git] / image.h
diff --git a/image.h b/image.h
index bf3e76f15b0bdabff6fba15b8751b2df96b9405b..b441d72f90a289490af81991555c534994923070 100644 (file)
--- a/image.h
+++ b/image.h
@@ -28,7 +28,7 @@ rtexture_t *image_masktex;
 rtexture_t *loadtextureimagewithmask (rtexturepool_t *pool, char* filename, int matchwidth, int matchheight, qboolean complain, qboolean mipmap, qboolean precache);
 
 // writes a RGB TGA that is already upside down (which TGA wants)
-void Image_WriteTGARGB_preflipped (char *filename, int width, int height, qbyte *data);
+qboolean Image_WriteTGARGB_preflipped (char *filename, int width, int height, qbyte *data);
 
 // writes a RGB TGA
 void Image_WriteTGARGB (char *filename, int width, int height, qbyte *data);
@@ -45,4 +45,8 @@ void Image_Resample (void *indata, int inwidth, int inheight, void *outdata, int
 // scales the image down by a power of 2 (in can be the same as out)
 void Image_MipReduce(qbyte *in, qbyte *out, int *width, int *height, int destwidth, int destheight, int bytesperpixel);
 
+// only used by menuplyr coloring
+qbyte *LoadLMPAs8Bit (qbyte *f, int matchwidth, int matchheight);
+
 #endif
+