mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
4cdf731c3f
All patches have been integrated meanwhile and should appear in the next release. Signed-off-by: Christian Eggers <ceggers@arri.de> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
From a6f822f75b3ba01b00c028608c93160d09a6ffd1 Mon Sep 17 00:00:00 2001
|
|
From: Jaeyoon Jung <jaeyoon.jung@lge.com>
|
|
Date: Mon, 1 Apr 2024 18:00:39 +0900
|
|
Subject: [PATCH] fix(fbdev): set resolution prior to buffer
|
|
|
|
Otherwise it ends up with using the default value 800x480 and may fail
|
|
at lv_display_set_buffers due to incorrect resolution.
|
|
|
|
Upstream-Status: Backport [29662d1c357c15135d076a2a924b9ef056c82120]
|
|
Signed-off-by: Jaeyoon Jung <jaeyoon.jung@lge.com>
|
|
---
|
|
|
|
src/drivers/display/fb/lv_linux_fbdev.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/drivers/display/fb/lv_linux_fbdev.c b/src/drivers/display/fb/lv_linux_fbdev.c
|
|
index b3cc89199..5fb4c5c9f 100644
|
|
--- a/src/drivers/display/fb/lv_linux_fbdev.c
|
|
+++ b/src/drivers/display/fb/lv_linux_fbdev.c
|
|
@@ -233,8 +233,8 @@ void lv_linux_fbdev_set_file(lv_display_t * disp, const char * file)
|
|
draw_buf_2 = malloc(draw_buf_size);
|
|
}
|
|
|
|
- lv_display_set_buffers(disp, draw_buf, draw_buf_2, draw_buf_size, LV_LINUX_FBDEV_RENDER_MODE);
|
|
lv_display_set_resolution(disp, hor_res, ver_res);
|
|
+ lv_display_set_buffers(disp, draw_buf, draw_buf_2, draw_buf_size, LV_LINUX_FBDEV_RENDER_MODE);
|
|
|
|
if(width > 0) {
|
|
lv_display_set_dpi(disp, DIV_ROUND_UP(hor_res * 254, width * 10));
|