DecodeRGB.hpp 360 B

123456789101112
  1. #ifndef __DECODERGB_HPP__
  2. #define __DECODERGB_HPP__
  3. #include <stddef.h>
  4. #include <stdint.h>
  5. void DecodeRBlock( const void* src, void* dst, size_t width );
  6. void DecodeRGBlock( const void* src, void* dst, size_t width );
  7. void DecodeRGBBlock( const void* src, void* dst, size_t width );
  8. void DecodeRGBABlock( const void* src, void* dst, size_t width );
  9. #endif