From 1060a4250b969b41dbb6ca00223d2ad3563d8ade Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 4 Jan 2020 19:56:59 +0100 Subject: [PATCH] term: more comments in the 'render' sub-struct --- terminal.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/terminal.h b/terminal.h index fe33ff98..e12a914e 100644 --- a/terminal.h +++ b/terminal.h @@ -283,9 +283,10 @@ struct terminal { bool visual_focus; struct { - bool refresh_needed; - int scrollback_lines; + bool refresh_needed; /* Terminal needs to be re-rendered, as soon-as-possible */ + int scrollback_lines; /* Number of scrollback lines, from conf (TODO: move out from render struct?) */ + /* Render threads + synchronization primitives */ struct { size_t count; sem_t start; @@ -304,7 +305,7 @@ struct terminal { struct cell *cell; /* For easy access to content */ } last_cursor; - bool pending; + bool pending; /* Need to re-render again, after next frame-callback */ struct buffer *last_buf; /* Buffer we rendered to last time */ bool was_flashing; /* Flash was active last time we rendered */ bool was_searching;