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/graphics.h | |
parent | 68915f46e66ed65ce2d32009fdfa2f5dca116842 (diff) |
Some user-side graphics
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 |