From 9814e743fd9c87ed6aadf36766fb7f2a260b13b0 Mon Sep 17 00:00:00 2001 From: Jan Van Winkel Date: Thu, 16 Jan 2020 22:24:07 +0100 Subject: [PATCH] driver: display: Added BGR565 pixel format Added BGR565 pixel format ti display format enumeration. Signed-off-by: Jan Van Winkel --- include/drivers/display.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/drivers/display.h b/include/drivers/display.h index 2d4870b3ff5..1608ae22662 100644 --- a/include/drivers/display.h +++ b/include/drivers/display.h @@ -41,6 +41,7 @@ enum display_pixel_format { PIXEL_FORMAT_MONO10 = BIT(2), /* 1=Black 0=White */ PIXEL_FORMAT_ARGB_8888 = BIT(3), PIXEL_FORMAT_RGB_565 = BIT(4), + PIXEL_FORMAT_BGR_565 = BIT(5), }; enum display_screen_info {