aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libgui/init.c
blob: 04d6b491df0e49561345101d73e32dc38c30dfd6 (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 <stdint.h>
#include <stdio.h>
#include <syscall.h>
#include <gui.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); */
}