mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-23 14:43:39 +00:00
27 lines
516 B
C
27 lines
516 B
C
#ifndef _TEX_COMP_H_
|
|
#define _TEX_COMP_H_
|
|
|
|
#include "ImageFile.h"
|
|
#include "CompressedImage.h"
|
|
|
|
struct SCompressionSettings {
|
|
SCompressionSettings(); // defaults
|
|
ECompressionFormat format;
|
|
bool bUseSIMD;
|
|
int iNumThreads;
|
|
int iQuality;
|
|
};
|
|
|
|
extern CompressedImage * CompressImage(
|
|
const ImageFile &,
|
|
const SCompressionSettings &settings
|
|
);
|
|
|
|
typedef void (* CompressionFunc)(
|
|
const unsigned char *inData,
|
|
unsigned char *outData,
|
|
unsigned int width,
|
|
unsigned int height
|
|
);
|
|
|
|
#endif //_TEX_COMP_H_
|