aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics
diff options
context:
space:
mode:
authorMarvin Borner2020-04-29 15:26:21 +0200
committerMarvin Borner2020-04-29 15:26:21 +0200
commit396d7d303d3bf0e796d0c817883ec1dec928352a (patch)
tree69d79c31ca94da7aa3089709be08f1d959023472 /src/kernel/graphics
parent4f3c75d23188bd480739d6d1514543c95cfe3399 (diff)
Some work on the libgui
Diffstat (limited to 'src/kernel/graphics')
-rw-r--r--src/kernel/graphics/vesa.c34
-rw-r--r--src/kernel/graphics/vesa.h17
2 files changed, 2 insertions, 49 deletions
diff --git a/src/kernel/graphics/vesa.c b/src/kernel/graphics/vesa.c
index 30cda3a..b92f171 100644
--- a/src/kernel/graphics/vesa.c
+++ b/src/kernel/graphics/vesa.c
@@ -125,6 +125,7 @@ void set_optimal_resolution()
debug("Found mode: %dx%dx%d", mode_info->width, mode_info->height,
mode_info->bpp);
highest = *mode;
+ current_mode_info = mode_info;
vbe_width = mode_info->width;
vbe_height = mode_info->height;
vbe_pitch = mode_info->pitch;
@@ -222,33 +223,6 @@ void vesa_set_font(int height)
font_height = height;
}
-void vesa_convert_color(uint32_t *color_array, uint32_t color)
-{
- uint8_t red = (uint8_t)((color >> 16) & 255);
- uint8_t green = (uint8_t)((color >> 8) & 255);
- uint8_t blue = (uint8_t)(color & 255);
-
- if ((vbe_bpl << 3) == 8) {
- uint32_t new_color =
- ((red * 7 / 255) << 5) + ((green * 7 / 255) << 2) + (blue * 3 / 255);
- color_array[0] = (new_color >> 16) & 255;
- color_array[1] = (new_color >> 8) & 255;
- color_array[2] = new_color & 255;
- } else if ((vbe_bpl << 3) == 16) {
- uint32_t new_color =
- (((red & 0b11111000) << 8) + ((green & 0b11111100) << 3) + (blue >> 3));
- color_array[0] = (new_color >> 16) & 255;
- color_array[1] = (new_color >> 8) & 255;
- color_array[2] = new_color & 255;
- } else if ((vbe_bpl << 3) == 24 || (vbe_bpl << 3) == 32) {
- color_array[0] = red;
- color_array[1] = green;
- color_array[2] = blue;
- } else {
- panic("Unknown color bpp!");
- }
-}
-
void vesa_set_pixel(uint16_t x, uint16_t y, const uint32_t color[3])
{
uint8_t pos = (uint8_t)(x * vbe_bpl + y * vbe_pitch);
@@ -362,10 +336,4 @@ void vesa_draw_cursor(int x, int y)
draw += vbe_pitch;
prev += vbe_pitch;
}
-}
-
-void vesa_set_color(uint32_t color)
-{
- vesa_convert_color(terminal_color, color);
- vesa_convert_color(terminal_background, default_background_color);
} \ No newline at end of file
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