annotate postproc/rgb2rgb.h @ 2658:2995e0cf02e9
removed #define USE_XANIM hack
author |
alex |
date |
Sat, 03 Nov 2001 21:27:23 +0000 |
parents |
501752469c39 |
children |
794dec2fae64 |
rev |
line source |
2504
|
1 /*
|
|
2 *
|
2506
|
3 * rgb2rgb.h, Software RGB to RGB convertor
|
2504
|
4 *
|
|
5 */
|
|
6
|
|
7 #ifndef RGB2RGB_INCLUDED
|
|
8 #define RGB2RGB_INCLUDED
|
|
9
|
|
10 extern void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size);
|
2505
|
11 extern void rgb32to24(uint8_t *src,uint8_t *dst,uint32_t src_size);
|
2506
|
12 extern void rgb15to16(uint8_t *src,uint8_t *dst,uint32_t src_size);
|
2504
|
13
|
|
14 #endif
|