[feat] 低质量ttf render

This commit is contained in:
2026-06-06 09:00:56 +08:00
Unverified
parent 3d47667c2f
commit 500d302ea9
15 changed files with 914 additions and 17 deletions
+1 -1
View File
@@ -13,5 +13,5 @@ extern serial_context g_serial;
void serial_init(EFI_SERIAL_IO_PROTOCOL *SerialIo); // 初始化串行驱动
void serial_write(String str); // 往串行写string
void serial_write_char(char c); // 往串行写char(不推荐使用)
void serial_write_hex(UINTN val, bool fill = true); // 往串行写十六进制数字fill=false 不补前导0
void serial_write_hex(UINTN val); // 往串行写十六进制数字
char serial_read_char(); // 读串行