aboutsummaryrefslogtreecommitdiff
path: root/libgui/vesa.c
diff options
context:
space:
mode:
authorMarvin Borner2020-08-25 21:14:47 +0200
committerMarvin Borner2020-08-25 21:14:47 +0200
commitd2017fca3efefdb4d514f2b356855a0fda1fccfd (patch)
treeebfddbbb5c6c30ae309085a6d3457b9146cd8e6c /libgui/vesa.c
parent0724b54018c379850e672ad6571e05b3f848150d (diff)
Some optimizations or sth
Diffstat (limited to 'libgui/vesa.c')
-rw-r--r--libgui/vesa.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libgui/vesa.c b/libgui/vesa.c
index df2c692..c005711 100644
--- a/libgui/vesa.c
+++ b/libgui/vesa.c
@@ -5,15 +5,15 @@
void vesa_draw_rectangle(struct vbe *vbe, int x1, int y1, int x2, int y2, const u32 color[3])
{
- int bpl = vbe->bpp >> 3;
+ int bypp = vbe->bpp >> 3;
- int pos1 = x1 * bpl + y1 * vbe->pitch;
+ int pos1 = x1 * bypp + y1 * vbe->pitch;
u8 *draw = &vbe->fb[pos1];
for (int i = 0; i <= y2 - y1; i++) {
for (int j = 0; j <= x2 - x1; j++) {
- draw[bpl * j] = color[2];
- draw[bpl * j + 1] = color[1];
- draw[bpl * j + 2] = color[0];
+ draw[bypp * j] = color[2];
+ draw[bypp * j + 1] = color[1];
+ draw[bypp * j + 2] = color[0];
}
draw += vbe->pitch;
}