blob: 2e5d9c5905cbacf3ea806c6e39e9e1c162b16155 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include <gui.h>
#include <stdint.h>
#include <stdio.h>
#include <syscall.h>
struct pointers *pointers;
u32 terminal_color[3] = { 0xab, 0xb2, 0xbf };
u32 terminal_background[3] = { 0x1d, 0x1f, 0x24 };
void gui_init()
{
// TODO: Implement framebuffer device
// pointers = syscall_pointers();
vbe_width = pointers->mode_info->width;
vbe_height = pointers->mode_info->height;
vbe_pitch = pointers->mode_info->pitch;
vbe_bpl = pointers->mode_info->bpp >> 3;
// TODO: Why tf is the kheap magic stored in the first few bytes?!
fb = (pointers->mode_info->framebuffer << 16);
/* gui_screen_clear(); */
/* printf("%dx%dx%d\n", vbe_width, vbe_height, vbe_bpl << 3); */
/* printf("0x%x\n", fb); */
}
|