blob: 4224487d32df372a637891c47ed26d2bbbaa9e3a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
*
* rgb2rgb.h, Software RGB to RGB coverter
*
*/
#ifndef RGB2RGB_INCLUDED
#define RGB2RGB_INCLUDED
extern void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size);
#endif
|