From 60d5fb4c8f1c746a789b3e6a0765089187f4cd86 Mon Sep 17 00:00:00 2001 From: Ashish Gupta Date: Tue, 19 Apr 2016 12:17:43 +0100 Subject: Fix colour conversion to 32bpp XBGR surfaces. --- src/plot/32bpp-xbgr8888.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/plot/32bpp-xbgr8888.c b/src/plot/32bpp-xbgr8888.c index 89131b4..a65719b 100644 --- a/src/plot/32bpp-xbgr8888.c +++ b/src/plot/32bpp-xbgr8888.c @@ -42,8 +42,9 @@ static inline nsfb_colour_t pixel_to_colour(UNUSED nsfb_t *nsfb, uint32_t pixel) /* convert a colour value to a 32bpp pixel value ready for screen output */ static inline uint32_t colour_to_pixel(UNUSED nsfb_t *nsfb, nsfb_colour_t c) { - /* TODO: FIX */ - return (c << 8); + return ((pixel & 0xFF) << 24) | + ((pixel & 0xFF00) << 8) | + ((pixel & 0xFF0000) >> 8); } #else /* __BYTE_ORDER == __BIG_ENDIAN */ static inline nsfb_colour_t pixel_to_colour(UNUSED nsfb_t *nsfb, uint32_t pixel) -- cgit v1.2.3