Home
last modified time | relevance | path

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

/bootable/recovery/minui/
Dgraphics.c55 static GRFont *gr_font = 0; variable
217 return gr_font->cwidth * strlen(s); in gr_measure()
222 *x = gr_font->cwidth; in gr_font_size()
223 *y = gr_font->cheight; in gr_font_size()
229 GRFont *font = gr_font; in gr_text()
327 gr_font = calloc(sizeof(*gr_font), 1); in gr_init_font()
329 int res = res_create_surface("font", (void**)&(gr_font->texture)); in gr_init_font()
334 gr_font->cwidth = gr_font->texture->width / 96; in gr_init_font()
335 gr_font->cheight = gr_font->texture->height / 2; in gr_init_font()
340 gr_font->texture = malloc(sizeof(*gr_font->texture)); in gr_init_font()
[all …]