render: draw the grid with rasterized glyphs

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I6350824abb506c2af98884a7374228116a6a6964
This commit is contained in:
raf 2026-06-23 16:57:49 +03:00
commit 5690e0e883
No known key found for this signature in database
GPG key ID: 29D95B64378DB4BF
9 changed files with 768 additions and 24 deletions

View file

@ -40,6 +40,10 @@ impl Term {
&self.grid
}
pub fn resize(&mut self, cols: usize, rows: usize) {
self.grid.resize(cols, rows);
}
pub fn title(&self) -> Option<&str> {
self.title.as_deref()
}