comparison postproc/rgb2rgb.h @ 2506:501752469c39

vo_vesa: more rgb2rgb support
author nick
date Sun, 28 Oct 2001 10:45:42 +0000
parents 2aaa11d22f91
children 794dec2fae64
comparison
equal deleted inserted replaced
2505:2aaa11d22f91 2506:501752469c39
1 /* 1 /*
2 * 2 *
3 * rgb2rgb.h, Software RGB to RGB converter 3 * rgb2rgb.h, Software RGB to RGB convertor
4 * 4 *
5 */ 5 */
6 6
7 #ifndef RGB2RGB_INCLUDED 7 #ifndef RGB2RGB_INCLUDED
8 #define RGB2RGB_INCLUDED 8 #define RGB2RGB_INCLUDED
9 9
10 extern void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size); 10 extern void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size);
11 extern void rgb32to24(uint8_t *src,uint8_t *dst,uint32_t src_size); 11 extern void rgb32to24(uint8_t *src,uint8_t *dst,uint32_t src_size);
12 extern void rgb15to16(uint8_t *src,uint8_t *dst,uint32_t src_size);
12 13
13 #endif 14 #endif