ProcessDxtc.hpp 376 B

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