diff options
author | Wolfgang Denk <wd@pollux.(none)> | 2005-09-21 15:24:52 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.(none)> | 2005-09-21 15:24:52 +0200 |
commit | 59d80bf180c39e4e83ec23654dc17ce514c88208 (patch) | |
tree | e924c2acd446562eaa9d08fb5cc74986d827d3a6 | |
parent | 1806c75959c5a207b1b43885da818b2b77f31ac8 (diff) | |
download | u-boot-imx-59d80bf180c39e4e83ec23654dc17ce514c88208.zip u-boot-imx-59d80bf180c39e4e83ec23654dc17ce514c88208.tar.gz u-boot-imx-59d80bf180c39e4e83ec23654dc17ce514c88208.tar.bz2 |
Fix computation of framebuffer palette for 8bpp LCD bitmaps
Patch by Francesco Mandracci, 16 Sep 2005
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | common/lcd.c | 5 |
2 files changed, 5 insertions, 3 deletions
@@ -2,6 +2,9 @@ Changes for U-Boot 1.1.4: ====================================================================== +* Fix computation of framebuffer palette for 8bpp LCD bitmaps + Patch by Francesco Mandracci, 16 Sep 2005 + * Update configuration for INKA4x0 board * Update configuration for PM854 board diff --git a/common/lcd.c b/common/lcd.c index a85599d..7bf7a63 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -638,9 +638,8 @@ int lcd_display_bitmap(ulong bmp_image, int x, int y) bmp_color_table_entry_t cte = bmp->color_table[i]; ushort colreg = ( ((cte.red) << 8) & 0xf800) | - ( ((cte.green) << 4) & 0x07e0) | - ( (cte.blue) & 0x001f) ; - + ( ((cte.green) << 3) & 0x07e0) | + ( ((cte.blue) >> 3) & 0x001f) ; #ifdef CFG_INVERT_COLORS *cmap = 0xffff - colreg; #else |