diff options
Diffstat (limited to 'include/object')
-rw-r--r-- | include/object/framebuffer.h | 1 |
1 files changed, 1 insertions, 0 deletions
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; } |