ProcessRGB.hpp 673 B

1234567891011121314
  1. #ifndef __PROCESSRGB_HPP__
  2. #define __PROCESSRGB_HPP__
  3. #include <stdint.h>
  4. void CompressEtc1Rgb( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width );
  5. void CompressEtc1RgbDither( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width );
  6. void CompressEtc2Rgb( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width, bool useHeuristics );
  7. void CompressEtc2Rgba( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width, bool useHeuristics );
  8. void CompressEacR( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width );
  9. void CompressEacRg( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width );
  10. #endif