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:
Daniel Eklöf 2019-07-10 18:45:12 +02:00
parent 5a92202a49
commit cf71534768
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 32 additions and 31 deletions

View file

@ -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;