From b8b094e45ecaa7876e02e5ada246ae13e57dfe07 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 5 Nov 2019 22:26:27 +0100 Subject: Added basic PS/2 mouse support --- src/kernel/graphics/vesa.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/kernel/graphics/vesa.c') diff --git a/src/kernel/graphics/vesa.c b/src/kernel/graphics/vesa.c index 639ec2b..eb70583 100644 --- a/src/kernel/graphics/vesa.c +++ b/src/kernel/graphics/vesa.c @@ -341,6 +341,14 @@ void vesa_draw_number(int n) { vesa_draw_string(itoa(n, string)); } +void vesa_draw_cursor(int x, int y) { + if (x < 0) x = 0; + if (y < 0) y = 0; + if (x > vbe_width - 1) x = vbe_width - 1; + if (y > vbe_height - 1) y = vbe_height - 1; + vesa_draw_rectangle(x, y, x + font_width, y + font_height, terminal_color); +} + void vesa_set_color(uint32_t color) { vesa_convert_color(terminal_color, color); vesa_convert_color(terminal_background, default_background_color); -- cgit v1.2.3