Lines Matching defs:wc
253 \param wc Current character (32 bit int)
255 int TR_find_alternate_font(FT_INFO *fti, FNT_SPECS **efsp, uint32_t wc){
270 glyph_index = FT_Get_Char_Index( fsp2->face, wc); /* we have the face, might as well check that directly */
282 if (FcCharSetHasChar(cs, wc)){ /* found a glyph for the character in this font */
328 \param wc Current character (32 bit int)
335 \param ymin If the pointer is defined, the value is adjusted if ymin of wc character is less than the current value.
336 \param ymax If the pointer is defined, the value is adjusted if ymin of wc character is more than the current value.
338 int TR_getadvance(FT_INFO *fti, FNT_SPECS *fsp, uint32_t wc, uint32_t pc, int load_flags, int kern_mode, int *ymin, int *ymax){
344 if(is_mn_unicode(wc))return(0); /* no advance on Unicode Mn characters */
346 glyph_index = FT_Get_Char_Index( fsp->face, wc);
348 glyph_index = TR_find_alternate_font(fti, &fsp, wc);
357 if(pc)advance += TR_getkern2(fsp, wc, pc, kern_mode);
370 \param wc Current character (32 bit int)
374 int TR_getkern2(FNT_SPECS *fsp, uint32_t wc, uint32_t pc, int kern_mode){
380 this_glyph_index = FT_Get_Char_Index( fsp->face, wc);