FasTC/Core/include/TexComp.h

28 lines
509 B
C
Raw Normal View History

2012-08-27 17:36:59 +00:00
#ifndef _TEX_COMP_H_
#define _TEX_COMP_H_
2012-08-27 22:34:37 +00:00
#include "ImageFile.h"
#include "CompressedImage.h"
struct SCompressionSettings {
SCompressionSettings(); // defaults
ECompressionFormat format;
bool bUseSIMD;
int iNumThreads;
};
extern void CompressImage(
const ImageFile &,
CompressedImage &,
const SCompressionSettings &settings
);
typedef void (* CompressionFunc)(
const unsigned char *inData,
unsigned char *outData,
unsigned int width,
unsigned int height
);
2012-08-27 17:36:59 +00:00
#endif //_TEX_COMP_H_