From f24404d85f2d226110a3fd9aa169f25f9f454e35 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Tue, 18 Oct 2022 07:41:14 -0600 Subject: video: Move bmp_display() prototype to video.h The lcd.h header is about to be deleted, so move this prototype. Signed-off-by: Simon Glass --- include/video.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'include') diff --git a/include/video.h b/include/video.h index 529f9685183..43f2e2c02f0 100644 --- a/include/video.h +++ b/include/video.h @@ -346,4 +346,13 @@ bool video_is_active(void); */ void *video_get_u_boot_logo(void); +/* + * bmp_display() - Display BMP (bitmap) data located in memory + * + * @addr: address of the bmp data + * @x: Position of bitmap from the left side, in pixels + * @y: Position of bitmap from the top, in pixels + */ +int bmp_display(ulong addr, int x, int y); + #endif -- cgit v1.3.1