low level render working

This commit is contained in:
Adolfo Reyna
2026-01-13 23:01:35 -05:00
parent 0bb25bb984
commit 7f5b027031
30 changed files with 1635 additions and 38 deletions

View File

@@ -1,6 +1,4 @@
#include "fonts.h"
const unsigned char font[96][6] = {
const unsigned char font_acme_5_outlines[96][6] = {
{0x00,0x00,0x00,0x00,0x00,0x00}, //
{0x7f,0x51,0x7f,0x00,0x00,0x00}, // !
{0x0f,0x09,0x0f,0x09,0x0f,0x00}, // "
@@ -97,11 +95,4 @@ const unsigned char font[96][6] = {
{0xe3,0xbe,0x88,0xf7,0x1c,0x00}, // }
{0x0f,0x09,0x0d,0x09,0x0b,0x09}, // ~
{0x00,0x00,0x00,0x00,0x00,0x00}
};
sFONT Acme_5 = {
font,
5, /* Width */
8, /* Height */
};