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.
 
 
 
 
 

14 lines
323 B

/*
*
* rgb2rgb.h, Software RGB to RGB convertor
*
*/
#ifndef RGB2RGB_INCLUDED
#define RGB2RGB_INCLUDED
extern void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size);
extern void rgb32to24(uint8_t *src,uint8_t *dst,uint32_t src_size);
extern void rgb15to16(uint8_t *src,uint8_t *dst,uint32_t src_size);
#endif