[PATCH 2/6] dm: video: Add damage notification on display clear
Alexander Graf
agraf at csgraf.de
Tue Jun 7 01:43:32 CEST 2022
Let's report the video damage when we clear the screen. This
way we can later lazily flush only relevant regions to hardware.
Signed-off-by: Alexander Graf <agraf at csgraf.de>
Reported-by: Da Xue <da at libre.computer>
---
drivers/video/video-uclass.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/video/video-uclass.c b/drivers/video/video-uclass.c
index 496aa56843..9ac1974670 100644
--- a/drivers/video/video-uclass.c
+++ b/drivers/video/video-uclass.c
@@ -153,6 +153,8 @@ int video_clear(struct udevice *dev)
if (ret)
return ret;
+ video_damage(dev, 0, 0, priv->xsize, priv->ysize);
+
return video_sync(dev, false);
}
--
2.32.1 (Apple Git-133)
More information about the U-Boot
mailing list