changed how buffers work a buffer now renders as a stream

This commit is contained in:
2025-11-13 15:01:04 -08:00
parent 3d755bd9a7
commit ee10de863d
2 changed files with 38 additions and 36 deletions

View File

@@ -118,6 +118,7 @@ struct tart_cell {
tart_byte background;
tart_byte style;
char display;
struct tart_vec2 screen_pos;
};
#endif
@@ -155,6 +156,7 @@ struct tart_buffer {
struct tart_vec2 size;
struct tart_vec2 position;
struct tart_cell* cells;
unsigned int current_idx;
};
/* Tart Window