Weird runes?

This commit is contained in:
xamidev
2024-08-19 12:50:17 +02:00
parent a2a7ab52a1
commit 6ce5264b43
5 changed files with 601 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
#ifndef FRAMEBUFFER_H
#define FRAMEBUFFER_H
extern const unsigned char font[512][64];
void putpixel(uint32_t* fb, int pitch, int bpp, int x, int y, uint32_t color);
void draw_char(uint32_t* fb, int pitch, int bpp, int x, int y, char c, uint32_t fg_color, uint32_t bg_color);
#endif