/external/libvterm/src/ |
state.c | 20 static void putglyph(VTermState *state, const uint32_t chars[], int width, VTermPos pos) function 30 if(state->callbacks && state->callbacks->putglyph) 31 if((*state->callbacks->putglyph)(&info, pos, state->cbdata)) 34 fprintf(stderr, "libvterm: Unhandled putglyph U+%04x at (%d,%d)\n", chars[0], pos.col, pos.row); 262 putglyph(state, state->combine_chars, state->combine_width, state->combine_pos); 317 putglyph(state, chars, width, state->pos); 633 putglyph(state, E, 1, pos); [all...] |
screen.c | 172 static int putglyph(VTermGlyphInfo *info, VTermPos pos, void *user) function 612 .putglyph = &putglyph,
|
/external/libvterm/include/ |
vterm.h | 186 int (*putglyph)(VTermGlyphInfo *info, VTermPos pos, void *user); member in struct:__anon17307
|