Home
last modified time | relevance | path

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

/GUIX-v6.4.1/common/src/
Dgx_system_string_width_get.c81 GX_CONST GX_FONT *font_link; in _gx_system_string_width_compressed_font_get() local
106 font_link = font; in _gx_system_string_width_compressed_font_get()
107 while (font_link) in _gx_system_string_width_compressed_font_get()
109 if (char_val >= font_link -> gx_font_first_glyph && in _gx_system_string_width_compressed_font_get()
110 char_val <= font_link -> gx_font_last_glyph) in _gx_system_string_width_compressed_font_get()
114 font_link = font_link -> gx_font_next_page; in _gx_system_string_width_compressed_font_get()
116 if (font_link) in _gx_system_string_width_compressed_font_get()
118 char_val = (GX_CHAR_CODE)(char_val - font_link -> gx_font_first_glyph); in _gx_system_string_width_compressed_font_get()
119 glyph = &font_link -> gx_font_glyphs.gx_font_compressed_glyphs[char_val]; in _gx_system_string_width_compressed_font_get()
184 GX_CONST GX_FONT *font_link; in _gx_system_string_width_kerning_font_get() local
[all …]
Dgx_canvas_glyphs_draw.c90 GX_CONST GX_FONT *font_link; in _gx_canvas_kerning_glyphs_draw() local
128 font_link = font; in _gx_canvas_kerning_glyphs_draw()
129 while (font_link) in _gx_canvas_kerning_glyphs_draw()
131 if (char_val >= font_link -> gx_font_first_glyph && in _gx_canvas_kerning_glyphs_draw()
132 char_val <= font_link -> gx_font_last_glyph) in _gx_canvas_kerning_glyphs_draw()
136 font_link = font_link -> gx_font_next_page; in _gx_canvas_kerning_glyphs_draw()
139 if (font_link) in _gx_canvas_kerning_glyphs_draw()
141 char_val = (GX_CHAR_CODE)(char_val - font_link -> gx_font_first_glyph); in _gx_canvas_kerning_glyphs_draw()
143 …glyph = &((GX_CONST GX_KERNING_GLYPH *)font_link -> gx_font_glyphs.gx_font_kerning_glyphs)[char_va… in _gx_canvas_kerning_glyphs_draw()
153 if ((*left_glyph_ptr) == (pre_char_val + font_link -> gx_font_first_glyph)) in _gx_canvas_kerning_glyphs_draw()
[all …]