diff options
Diffstat (limited to 'src/userspace/graphics/graphics.h')
-rw-r--r-- | src/userspace/graphics/graphics.h | 18 |
1 files changed, 18 insertions, 0 deletions
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 |