From 7ec9a3d7e0bd3e3c65617cccfb4c1f11dab4f645 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 22 Nov 2021 22:29:58 +0100 Subject: framebuffer: add scroll function --- include/object/framebuffer.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/object/framebuffer.h b/include/object/framebuffer.h index a76a24a..bfbd215 100644 --- a/include/object/framebuffer.h +++ b/include/object/framebuffer.h @@ -20,6 +20,7 @@ class Framebuffer : public OutputStream constexpr static unsigned int const height = CONFIG_framebuffer_height; void clear(); + void scroll(); void fillBox(unsigned int x, unsigned int y, unsigned int w, unsigned int h); void drawAt(unsigned int x, unsigned int y, unsigned int w, unsigned int h, unsigned char *image); void setFont(const glyph_t *font) { this->font = font; } -- cgit v1.2.3