diff options
author | Marvin Borner | 2019-12-11 21:22:15 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-11 21:22:15 +0100 |
commit | e7d88df7a5a7e11677b68303a0d05455bf9a60d6 (patch) | |
tree | c727ea585e21bc68de6add2720e47af7c2506def /src/userspace/graphics | |
parent | 68915f46e66ed65ce2d32009fdfa2f5dca116842 (diff) |
Some user-side graphics
Diffstat (limited to 'src/userspace/graphics')
-rw-r--r-- | src/userspace/graphics/framebuffer.c | 34 | ||||
-rw-r--r-- | src/userspace/graphics/graphics.h | 18 |
2 files changed, 52 insertions, 0 deletions
diff --git a/src/userspace/graphics/framebuffer.c b/src/userspace/graphics/framebuffer.c new file mode 100644 index 0000000..f7b793b --- /dev/null +++ b/src/userspace/graphics/framebuffer.c @@ -0,0 +1,34 @@ +#include <syscall.h> +#include <graphics/graphics.h> + +unsigned char *fb; +int vbe_bpl = 3; +int vbe_pitch = 3000; +int vbe_height = 1080; +int vbe_width = 2560; + +void vesa_draw_rectangle(int x1, int y1, int x2, int y2, const uint32_t color[3]) +{ + int pos1 = x1 * vbe_bpl + y1 * vbe_pitch; + char *draw = (char *) &fb[pos1]; + for (int i = 0; i <= y2 - y1; i++) { + for (int j = 0; j <= x2 - x1; j++) { + draw[vbe_bpl * j] = color[2]; + draw[vbe_bpl * j + 1] = color[1]; + draw[vbe_bpl * j + 2] = color[0]; + } + draw += vbe_pitch; + } +} + +void vesa_clear() +{ + vesa_draw_rectangle(0, 0, vbe_width - 1, vbe_height - 1, 0); +} + +void init_framebuffer() +{ + struct userspace_pointers *pointers = (struct userspace_pointers *) syscall_get_pointers(); + fb = pointers->fb; + vesa_clear(); +}
\ No newline at end of file diff --git a/src/userspace/graphics/graphics.h b/src/userspace/graphics/graphics.h new file mode 100644 index 0000000..6197020 --- /dev/null +++ b/src/userspace/graphics/graphics.h @@ -0,0 +1,18 @@ +#ifndef MELVIX_GRAPHICS_H +#define MELVIX_GRAPHICS_H + +struct font { + uint16_t font_32[758][32]; + uint16_t font_24[758][24]; + uint8_t font_16[758][16]; + uint16_t cursor[19]; +}; + +struct userspace_pointers { + unsigned char *fb; + struct font *font; +}; + +void init_framebuffer(); + +#endif
\ No newline at end of file |