Searched refs:character (Results 1 – 3 of 3) sorted by relevance
/DragonOS-0.1.3/kernel/src/libs/libUI/ |
D | textui-render.c | 22 …_render_chromatic(uint16_t actual_line, uint16_t index, struct textui_char_chromatic_t *character); 110 …i_render_chromatic(uint16_t actual_line, uint16_t index, struct textui_char_chromatic_t *character) in __textui_render_chromatic() argument 122 unsigned char *font_ptr = font_ascii[(uint8_t)character->c]; in __textui_render_chromatic() 126 uint32_t FRcolor = character->FRcolor & 0x00ffffff; in __textui_render_chromatic() 128 uint32_t BKcolor = character->BKcolor & 0x00ffffff; in __textui_render_chromatic()
|
D | textui.c | 171 static int __textui_putchar_window(struct textui_window_t *window, uint16_t character, uint32_t FRc… in __textui_putchar_window() argument 178 vline->chars[vline->index].c = character; in __textui_putchar_window() 208 int textui_putchar_window(struct textui_window_t *window, uint16_t character, uint32_t FRcolor, uin… in textui_putchar_window() argument 210 if (unlikely(character == '\0')) in textui_putchar_window() 217 c_uart_send(COM1, character); in textui_putchar_window() 218 if (unlikely(character == '\n')) in textui_putchar_window() 227 else if (character == '\t') // 输出制表符 in textui_putchar_window() 236 else if (character == '\b') // 退格 in textui_putchar_window() 274 __textui_putchar_window(window, character, FRcolor, BKcolor); in textui_putchar_window() 290 int textui_putchar(uint16_t character, uint32_t FRcolor, uint32_t BKcolor) in textui_putchar() argument [all …]
|
D | textui.h | 152 int textui_putchar_window(struct textui_window_t *window, uint16_t character, uint32_t FRcolor, uin… 162 int textui_putchar(uint16_t character, uint32_t FRcolor, uint32_t BKcolor);
|