diff options
Diffstat (limited to 'src/user/app/vterm/draw.c')
-rw-r--r-- | src/user/app/vterm/draw.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/user/app/vterm/draw.c b/src/user/app/vterm/draw.c deleted file mode 100644 index ee36a0f..0000000 --- a/src/user/app/vterm/draw.c +++ /dev/null @@ -1,17 +0,0 @@ -#include "vterm.h" -#include <camellia/execbuf.h> -#include <camellia/syscalls.h> -#include <string.h> - -struct framebuf fb; -struct rect dirty; - -void scroll(void) { - size_t row_len = fb.pitch * font.h; - memmove(fb.b, fb.b + row_len, fb.len - row_len); - memset(fb.b + fb.len - row_len, 0, row_len); - cursor.y--; - - dirty.x1 = 0; dirty.y1 = 0; - dirty.x2 = ~0; dirty.y2 = ~0; -} |