driver: display: Added BGR565 pixel format

Added BGR565 pixel format ti display format enumeration.

Signed-off-by: Jan Van Winkel <jan.van_winkel@dxplore.eu>
This commit is contained in:
Jan Van Winkel 2020-01-16 22:24:07 +01:00 committed by Maureen Helm
commit 9814e743fd

View file

@ -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 {