2001-10-28 11:17:57 +01:00
|
|
|
/*
|
|
|
|
*
|
2001-10-28 11:45:42 +01:00
|
|
|
* rgb2rgb.h, Software RGB to RGB convertor
|
2001-10-28 11:17:57 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RGB2RGB_INCLUDED
|
|
|
|
#define RGB2RGB_INCLUDED
|
|
|
|
|
|
|
|
extern void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size);
|
2001-10-28 11:28:08 +01:00
|
|
|
extern void rgb32to24(uint8_t *src,uint8_t *dst,uint32_t src_size);
|
2001-10-28 11:45:42 +01:00
|
|
|
extern void rgb15to16(uint8_t *src,uint8_t *dst,uint32_t src_size);
|
2001-10-28 11:17:57 +01:00
|
|
|
|
|
|
|
#endif
|