[PATCH 1/3] graphic_utils: implement 8 bpp color depth in gu_set_pixel
Bastian Stender
bst at pengutronix.de
Thu Feb 23 08:45:25 PST 2017
Signed-off-by: Bastian Stender <bst at pengutronix.de>
---
lib/gui/graphic_utils.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/gui/graphic_utils.c b/lib/gui/graphic_utils.c
index d3f5cce4b7..f6ab5ea0d1 100644
--- a/lib/gui/graphic_utils.c
+++ b/lib/gui/graphic_utils.c
@@ -132,6 +132,7 @@ void gu_set_pixel(struct fb_info *info, void *adr, u32 px)
{
switch (info->bits_per_pixel) {
case 8:
+ *(u8 *)adr = px & 0xff;
break;
case 16:
*(u16 *)adr = px & 0xffff;
--
2.11.0
More information about the barebox
mailing list