summaryrefslogtreecommitdiffstats
path: root/src/screen.h
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-06-05 01:31:43 -0400
committerJesse Luehrs <doy@tozt.net>2016-06-05 01:31:43 -0400
commit4c7f37b890d4201423987bedb7b9b42b033f360c (patch)
tree340116d64fd8cad13b8a28e112b32d4f1bff10cc /src/screen.h
parent8947aec3f40270b0f5dc31ff15260bb4de6c58f1 (diff)
downloadlibvt100-dirty-cells-take-2.tar.gz
libvt100-dirty-cells-take-2.zip
track dirty state on a per-cell basisdirty-cells-take-2
Diffstat (limited to 'src/screen.h')
-rw-r--r--src/screen.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screen.h b/src/screen.h
index bd52d49..285a0ca 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -51,6 +51,7 @@ struct vt100_cell {
size_t len;
struct vt100_cell_attrs attrs;
unsigned int is_wide: 1;
+ unsigned int was_drawn: 1;
};
struct vt100_row {
@@ -103,7 +104,6 @@ struct vt100_screen {
unsigned int update_title: 1;
unsigned int update_icon_name: 1;
- unsigned int dirty: 1;
unsigned int custom_scrollback_length: 1;
};