aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics/vesa.h
diff options
context:
space:
mode:
authorMarvin Borner2019-11-05 22:26:27 +0100
committerMarvin Borner2019-11-05 22:26:27 +0100
commitb8b094e45ecaa7876e02e5ada246ae13e57dfe07 (patch)
tree99a32122bbea261602299cb2e85fcf45926c66c3 /src/kernel/graphics/vesa.h
parent2180357ff5edbd4c85e125ea5c45d9b2a2026944 (diff)
Added basic PS/2 mouse support
Diffstat (limited to 'src/kernel/graphics/vesa.h')
-rw-r--r--src/kernel/graphics/vesa.h22
1 files changed, 22 insertions, 0 deletions
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
@@ -118,6 +118,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
*/
void vesa_clear();
@@ -153,6 +163,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
*/
@@ -187,6 +204,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
*/
char text[1024];