fix(wayland): call display_flush_ready on intermediate frames (#8471)

This commit is contained in:
André Costa
2025-06-29 06:40:13 +02:00
committed by GitHub
parent 53704a03ec
commit 2bc3b082e4
+5
View File
@@ -172,6 +172,11 @@ void lv_wayland_dmabuf_flush_full_mode(lv_display_t * disp, const lv_area_t * ar
buf->busy = 1;
window->flush_pending = true;
}
else {
/* Not the last frame yet, so tell lvgl to keep going
* For the last frame, we wait for the compositor instead */
lv_display_flush_ready(disp);
}
return;
}