mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-14 05:33:59 -04:00
terminal: remove 'blink' attribute from cell struct
This makes the other attribute bits fit in a single uint8_t, which makes each cell smaller which improves cache usage.
This commit is contained in:
parent
5a92202a49
commit
cf71534768
2 changed files with 32 additions and 31 deletions
|
|
@ -56,7 +56,7 @@ struct attributes {
|
|||
uint8_t italic:1;
|
||||
uint8_t underline:1;
|
||||
uint8_t strikethrough:1;
|
||||
uint8_t blink:1;
|
||||
//uint8_t blink:1; /* Not supported yet, and removing it means all other attributes fit in a single uint8_t */
|
||||
uint8_t conceal:1;
|
||||
uint8_t reverse:1;
|
||||
uint8_t have_foreground:1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue