Commit | Line | Data |
---|---|---|
1 | #ifdef __cplusplus | |
2 | extern "C" | |
3 | { | |
4 | #endif | |
5 | ||
6 | void bgr555_to_rgb565(void *dst, const void *src, int bytes); | |
7 | void bgr888_to_rgb888(void *dst, const void *src, int bytes); | |
8 | void bgr888_to_rgb565(void *dst, const void *src, int bytes); | |
9 | void rgb888_to_rgb565(void *dst, const void *src, int bytes); | |
10 | ||
11 | #ifdef __cplusplus | |
12 | } | |
13 | #endif |