made significant upgrades to the rendering API. now need to move all applications to the new API and deprecate the old one.

This commit is contained in:
2025-02-18 03:59:34 +00:00
parent a8b8d61112
commit c3c4633cf1
7 changed files with 172 additions and 84 deletions
+1
View File
@@ -296,6 +296,7 @@ impl Renderer {
if self.application_mode {
for (i, row) in self.app_buffer.iter().enumerate() {
for (j, col) in row.iter().enumerate() {
if col.character == 0u8 { continue; }
self.screen_ref.chars[i][j].write(*col);
}
}