Home
last modified time | relevance | path

Searched refs:glyph_ptr (Results 1 – 1 of 1) sorted by relevance

/Zephyr-Core-3.7.0/subsys/fb/
Dcfb.c77 static inline uint8_t get_glyph_byte(uint8_t *glyph_ptr, const struct cfb_font *fptr, in get_glyph_byte() argument
81 return glyph_ptr[x * (fptr->height / 8U) + y]; in get_glyph_byte()
83 return glyph_ptr[y * (fptr->width) + x]; in get_glyph_byte()
102 uint8_t *glyph_ptr; in draw_char_vtmono() local
108 glyph_ptr = get_glyph_ptr(fptr, c); in draw_char_vtmono()
109 if (!glyph_ptr) { in draw_char_vtmono()
143 next_byte = get_glyph_byte(glyph_ptr, fptr, g_x, g_y / 8); in draw_char_vtmono()
145 byte = get_glyph_byte(glyph_ptr, fptr, g_x, g_y / 8); in draw_char_vtmono()
146 next_byte = get_glyph_byte(glyph_ptr, fptr, g_x, (g_y + 8) / 8); in draw_char_vtmono()