Lines Matching refs:font
74 static UINT _gx_system_string_width_compressed_font_get(GX_CONST GX_FONT *font, in _gx_system_string_width_compressed_font_get() argument
106 font_link = font; in _gx_system_string_width_compressed_font_get()
177 static UINT _gx_system_string_width_kerning_font_get(GX_CONST GX_FONT *font, in _gx_system_string_width_kerning_font_get() argument
216 font_link = font; in _gx_system_string_width_kerning_font_get()
311 UINT _gx_system_string_width_get(GX_CONST GX_FONT *font, GX_CONST GX_CHAR *text, INT string_length… in _gx_system_string_width_get() argument
332 status = _gx_system_string_width_get_ext(font, &string, return_width); in _gx_system_string_width_get()
382 UINT _gx_system_string_width_get_ext(GX_CONST GX_FONT *font, GX_CONST GX_STRING *string, GX_VALUE … in _gx_system_string_width_get_ext() argument
396 if (!font || !string_copy.gx_string_ptr) in _gx_system_string_width_get_ext()
402 if (font -> gx_font_format & GX_FONT_FORMAT_COMPRESSED) in _gx_system_string_width_get_ext()
404 return _gx_system_string_width_compressed_font_get(font, &string_copy, return_width); in _gx_system_string_width_get_ext()
409 if (font -> gx_font_format & GX_FONT_FORMAT_KERNING) in _gx_system_string_width_get_ext()
411 return _gx_system_string_width_kerning_font_get(font, &string_copy, return_width); in _gx_system_string_width_get_ext()
435 font_link = font; in _gx_system_string_width_get_ext()