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.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'src/kernel/graphics/vesa.h') diff --git a/src/kernel/graphics/vesa.h b/src/kernel/graphics/vesa.h index 8a16516..1e49cd0 100644 --- a/src/kernel/graphics/vesa.h +++ b/src/kernel/graphics/vesa.h @@ -117,6 +117,16 @@ void vbe_set_mode(unsigned short mode); */ void set_optimal_resolution(); +/** + * Draws a efficient rectangle + * @param x1 First X coordinate + * @param y1 First Y coordinate + * @param x2 Second X coordinate + * @param y2 Second Y coordinate + * @param color Rectangle color + */ +void vesa_draw_rectangle(int x1, int y1, int x2, int y2, const uint32_t color[3]); + /** * Clears the screen with black */ @@ -152,6 +162,13 @@ void vesa_draw_string(const char *data); */ void vesa_draw_number(int n); +/** + * Updates the cursor + * @param x The X position + * @param y The Y position + */ +void vesa_draw_cursor(int x, int y); + /** * Sets the color using a rgb number * @param color The color @@ -186,6 +203,11 @@ enum vesa_color { */ const uint32_t default_text_color; +/** + * The current text color (as normalized array) + */ +uint32_t terminal_color[3]; + /** * The current input */ -- cgit v1.2.3