blob: 4576808c6eb0f6ad396a2098e53771728f34c893 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include <gui.h>
#include <stdint.h>
#include <stdio.h>
void gui_draw_rectangle(int x1, int y1, int x2, int y2, const u32 color[3])
{
int pos1 = x1 * vbe_bpl + y1 * vbe_pitch;
char *draw = (char *)&fb[pos1];
for (int i = 0; i <= y2 - y1; i++) {
for (int j = 0; j <= x2 - x1; j++) {
draw[vbe_bpl * j] = (char)color[2];
draw[vbe_bpl * j + 1] = (char)color[1];
draw[vbe_bpl * j + 2] = (char)color[0];
}
draw += vbe_pitch;
}
}
void gui_screen_clear()
{
gui_draw_rectangle(0, 0, vbe_width - 1, vbe_height - 1, terminal_background);
}
|