HomeSort by relevance Sort by last modified time
    Searched refs:vterm_color_rgb (Results 1 - 2 of 2) sorted by null

  /external/libvterm/src/
pen.c 47 vterm_color_rgb(
73 vterm_color_rgb(col, ramp6[index/6/6 % 6],
83 vterm_color_rgb(col, ramp24[index], ramp24[index], ramp24[index]);
98 vterm_color_rgb(col, CSI_ARG(args[0]), CSI_ARG(args[1]), CSI_ARG(args[2]));
162 vterm_color_rgb(&state->default_fg, 240, 240, 240);
163 vterm_color_rgb(&state->default_bg, 0, 0, 0);
  /external/libvterm/include/
vterm.h 59 VTERM_COLOR_RGB = 0x00,
94 * Returns true if the VTERM_COLOR_RGB `type` flag is set, indicating that the
105 (((col)->type & VTERM_COLOR_TYPE_MASK) == VTERM_COLOR_RGB)
174 static inline void vterm_color_rgb(VTermColor *col, uint8_t red, uint8_t green, function
177 col->type = VTERM_COLOR_RGB;

Completed in 44 milliseconds