aboutsummaryrefslogtreecommitdiff
path: root/src/inc/vesa.h
blob: e34cdc0aa4183caa7766c7eb89a209363fb11616 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// MIT License, Copyright (c) 2020 Marvin Borner

#ifndef VBE_H
#define VBE_H

#include <def.h>

struct vbe {
	u16 attributes;
	u8 window_a;
	u8 window_b;
	u16 granularity;
	u16 window_size;
	u16 segment_a;
	u16 segment_b;
	u32 win_func_ptr;
	u16 pitch;
	u16 width;
	u16 height;
	u8 w_char;
	u8 y_char;
	u8 planes;
	u8 bpp;
	u8 banks;
	u8 memory_model;
	u8 bank_size;
	u8 image_pages;
	u8 reserved0;

	u8 red_mask;
	u8 red_position;
	u8 green_mask;
	u8 green_position;
	u8 blue_mask;
	u8 blue_position;
	u8 reserved_mask;
	u8 reserved_position;
	u8 direct_color_attributes;

	u32 framebuffer;
	u32 off_screen_mem_off;
	u16 off_screen_mem_size;
	u8 reserved1[206];
};

struct vbe *vbe;
int vbe_width;
int vbe_height;
int vbe_bpl;
int vbe_pitch;
u8 *fb;

void vesa_fill(const u32 color[3]);
void vesa_set_pixel(u16 x, u16 y, const u32 color[3]);
void vesa_init(struct vbe *info);

#endif