Lines Matching full:gr_font
44 static GRFont* gr_font = NULL;
65 return gr_font->cwidth * strlen(s);
70 *x = gr_font->cwidth;
71 *y = gr_font->cheight;
108 GRFont* font = gr_font;
272 gr_font = reinterpret_cast<GRFont*>(calloc(sizeof(*gr_font), 1));
274 int res = res_create_alpha_surface("font", &(gr_font->texture));
279 gr_font->cwidth = gr_font->texture->width / 96;
280 gr_font->cheight = gr_font->texture->height / 2;
285 gr_font->texture = reinterpret_cast<GRSurface*>(malloc(sizeof(*gr_font->texture)));
286 gr_font->texture->width = font.width;
287 gr_font->texture->height = font.height;
288 gr_font->texture->row_bytes = font.width;
289 gr_font->texture->pixel_bytes = 1;
292 gr_font->texture->data = reinterpret_cast<unsigned char*>(bits);
301 gr_font->cwidth = font.cwidth;
302 gr_font->cheight = font.cheight;