1 | #ifndef __PROCESSDXT1_HPP__ |
---|---|
2 | #define __PROCESSDXT1_HPP__ |
3 | |
4 | #include <stddef.h> |
5 | #include <stdint.h> |
6 | |
7 | void CompressDxt1( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width ); |
8 | void CompressDxt1Dither( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width ); |
9 | void CompressDxt5( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width ); |
10 | |
11 | #endif |
12 |