Lines Matching refs:vline
61 #define __textui_init_vline(vline, chars_ptr) … argument
64 …memset(vline, 0, sizeof(struct textui_vline_chromatic_t)); …
65 …(vline)->index = 0; …
66 …(vline)->chars = chars_ptr; …
143 struct textui_vline_chromatic_t *vline = &window->vlines.chromatic[window->vline_operating]; in __textui_new_line() local
144 memset(vline->chars, 0, sizeof(struct textui_char_chromatic_t) * window->chars_per_line); in __textui_new_line()
145 vline->index = 0; in __textui_new_line()
176 struct textui_vline_chromatic_t *vline = &window->vlines.chromatic[window->vline_operating]; in __textui_putchar_window() local
178 vline->chars[vline->index].c = character; in __textui_putchar_window()
179 vline->chars[vline->index].FRcolor = FRcolor & 0xffffff; in __textui_putchar_window()
180 vline->chars[vline->index].BKcolor = BKcolor & 0xffffff; in __textui_putchar_window()
181 ++vline->index; in __textui_putchar_window()
182 textui_refresh_characters(window, window->vline_operating, vline->index - 1, 1); in __textui_putchar_window()
185 if (vline->index > window->chars_per_line) in __textui_putchar_window()