You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
323B

  1. /*
  2. *
  3. * rgb2rgb.h, Software RGB to RGB convertor
  4. *
  5. */
  6. #ifndef RGB2RGB_INCLUDED
  7. #define RGB2RGB_INCLUDED
  8. extern void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size);
  9. extern void rgb32to24(uint8_t *src,uint8_t *dst,uint32_t src_size);
  10. extern void rgb15to16(uint8_t *src,uint8_t *dst,uint32_t src_size);
  11. #endif