From e7d88df7a5a7e11677b68303a0d05455bf9a60d6 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 11 Dec 2019 21:22:15 +0100 Subject: Some user-side graphics --- src/userspace/graphics/graphics.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/userspace/graphics/graphics.h (limited to 'src/userspace/graphics/graphics.h') 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 -- cgit v1.2.3