aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics
diff options
context:
space:
mode:
authorMarvin Borner2020-04-26 20:12:05 +0200
committerMarvin Borner2020-04-26 20:12:05 +0200
commit31f671f2137bc09e62de09142bea232c1975c76b (patch)
tree60729693e4a70d2b3d449ed396ba860d3fa33071 /src/kernel/graphics
parentd3047efc1085d3e2f5524f629e55dc456a2f5065 (diff)
Complete rewrite of paging and allocation libs
-> This was REALLY needed.
Diffstat (limited to 'src/kernel/graphics')
-rw-r--r--src/kernel/graphics/vesa.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kernel/graphics/vesa.c b/src/kernel/graphics/vesa.c
index e8ef0e0..f116146 100644
--- a/src/kernel/graphics/vesa.c
+++ b/src/kernel/graphics/vesa.c
@@ -184,11 +184,11 @@ void set_optimal_resolution()
uint32_t fb_size = vbe_width * vbe_height * vbe_bpl;
cursor_buffer = kmalloc(fb_size);
- for (uint32_t z = 0; z < fb_size; z += 4096) {
- paging_map((uint32_t)fb + z, (uint32_t)fb + z, PT_PRESENT | PT_RW | PT_USED);
- paging_map((uint32_t)cursor_buffer + z, (uint32_t)cursor_buffer + z,
- PT_PRESENT | PT_RW | PT_USED);
- }
+ /* for (uint32_t z = 0; z < fb_size; z += 4096) { */
+ /* paging_map((uint32_t)fb + z, (uint32_t)fb + z, PT_PRESENT | PT_RW | PT_USED); */
+ /* paging_map((uint32_t)cursor_buffer + z, (uint32_t)cursor_buffer + z, */
+ /* PT_PRESENT | PT_RW | PT_USED); */
+ /* } */
if (vbe_height > 1440)
vesa_set_font(32);
@@ -368,4 +368,4 @@ 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
+}