diff options
author | Marvin Borner | 2020-04-29 15:26:21 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-29 15:26:21 +0200 |
commit | 396d7d303d3bf0e796d0c817883ec1dec928352a (patch) | |
tree | 69d79c31ca94da7aa3089709be08f1d959023472 /src/kernel/graphics/vesa.h | |
parent | 4f3c75d23188bd480739d6d1514543c95cfe3399 (diff) |
Some work on the libgui
Diffstat (limited to 'src/kernel/graphics/vesa.h')
-rw-r--r-- | src/kernel/graphics/vesa.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/src/kernel/graphics/vesa.h b/src/kernel/graphics/vesa.h index 50bf85c..bbe5aaf 100644 --- a/src/kernel/graphics/vesa.h +++ b/src/kernel/graphics/vesa.h @@ -128,21 +128,6 @@ 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(); - -/** * Sets one of the fonts inside the font header file * @param height The desired font height */ @@ -226,7 +211,7 @@ char text[1024]; /** * The current video mode */ -int vbe_current_mode; +struct vbe_mode_info *current_mode_info; /** * The width of the current video mode |