]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - image.h
removed support for TEXTYPE_RGB
[xonotic/darkplaces.git] / image.h
diff --git a/image.h b/image.h
index 47f5f4cfdb9a5ae471bab82be317dd9640f63344..24152f9091e253ab7e5787f55efb130d3469f464 100644 (file)
--- a/image.h
+++ b/image.h
@@ -35,10 +35,10 @@ qboolean Image_WriteTGARGB_preflipped (const char *filename, int width, int heig
 void Image_WriteTGARGBA (const char *filename, int width, int height, const unsigned char *data);
 
 // resizes the image (in can not be the same as out)
-void Image_Resample (const void *indata, int inwidth, int inheight, int indepth, void *outdata, int outwidth, int outheight, int outdepth, int bytesperpixel, int quality);
+void Image_Resample32(const void *indata, int inwidth, int inheight, int indepth, void *outdata, int outwidth, int outheight, int outdepth, int quality);
 
 // scales the image down by a power of 2 (in can be the same as out)
-void Image_MipReduce(const unsigned char *in, unsigned char *out, int *width, int *height, int *depth, int destwidth, int destheight, int destdepth, int bytesperpixel);
+void Image_MipReduce32(const unsigned char *in, unsigned char *out, int *width, int *height, int *depth, int destwidth, int destheight, int destdepth);
 
 // only used by menuplyr coloring
 unsigned char *LoadLMP (const unsigned char *f, int filesize, int matchwidth, int matchheight, qboolean loadAs8Bit);