X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=image.h;h=dd555a8f481e8a92e6a6d6e9e33f071f8d8e4707;hb=488a6f1ca3dcfac44522dcf6307d330d0d4f460c;hp=915357739ed24048a9dce598f41d34b4681f25ec;hpb=6a4dd8ae85c621f2d16ede4a0ebb41a3b34bcea9;p=xonotic%2Fdarkplaces.git diff --git a/image.h b/image.h index 91535773..dd555a8f 100644 --- a/image.h +++ b/image.h @@ -28,6 +28,12 @@ unsigned char *loadimagepixelsbgra (const char *filename, qboolean complain, qbo // loads an 8bit pcx image into a 296x194x8bit buffer, with cropping as needed qboolean LoadPCX_QWSkin(const unsigned char *f, int filesize, unsigned char *pixels, int outwidth, int outheight); +// loads the palette from an 8bit pcx image into your provided array +qboolean LoadPCX_PaletteOnly(const unsigned char *f, int filesize, unsigned char *palette768b); + +// get the metadata from a Quake2 wal file +qboolean LoadWAL_GetMetadata(const unsigned char *f, int filesize, int *retwidth, int *retheight, int *retflags, int *retvalue, int *retcontents, char *retanimname32c); + // loads a texture, as a texture rtexture_t *loadtextureimage (rtexturepool_t *pool, const char *filename, qboolean complain, int flags, qboolean allowFixtrans, qboolean sRGB);