fix(drm): default to XRGB8888 framebuffer (#5851)

Co-authored-by: Marek Vasut <marex@denx.de>
This commit is contained in:
Marex
2024-03-16 07:50:46 +01:00
committed by GitHub
parent 6159bad538
commit 765aac831e

View File

@@ -24,7 +24,7 @@
* DEFINES
*********************/
#if LV_COLOR_DEPTH == 32
#define DRM_FOURCC DRM_FORMAT_ARGB8888
#define DRM_FOURCC DRM_FORMAT_XRGB8888
#elif LV_COLOR_DEPTH == 16
#define DRM_FOURCC DRM_FORMAT_RGB565
#else