Basic rendering of the font

This commit is contained in:
2023-11-30 20:24:26 -05:00
parent f087fe6417
commit c7e43a0210
3 changed files with 58 additions and 24 deletions

View File

@@ -29,10 +29,13 @@ static void setup() {
static void update() {
FontWriter::FontWriter cursor;
auto new_cursor = NewFontWriter::start(Make::PositionI16(16, 16));
const auto end_pos = cursor.write(FontWriter::Position::create(0, 32), "Cody is cute\n&\na \x1b[8;0;0mBAAAAABY!!!");
cursor.write(end_pos, "\x1b[0;7;7mJaby was\nhere c:");
new_cursor.write("0");
paco.update();
}