Searched refs:ttface (Results 1 – 10 of 10) sorted by relevance
/external/freetype/src/base/ |
D | ftcolor.c | 61 TT_Face ttface; in FT_Palette_Select() local 76 ttface = (TT_Face)face; in FT_Palette_Select() 77 sfnt = (SFNT_Service)ttface->sfnt; in FT_Palette_Select() 79 error = sfnt->set_palette( ttface, palette_index ); in FT_Palette_Select() 83 ttface->palette_index = palette_index; in FT_Palette_Select() 86 *apalette = ttface->palette; in FT_Palette_Select() 98 TT_Face ttface; in FT_Palette_Set_Foreground_Color() local 107 ttface = (TT_Face)face; in FT_Palette_Set_Foreground_Color() 109 ttface->foreground_color = foreground_color; in FT_Palette_Set_Foreground_Color() 110 ttface->have_foreground_color = 1; in FT_Palette_Set_Foreground_Color()
|
D | ftgasp.c | 33 TT_Face ttface = (TT_Face)face; in FT_Get_Gasp() local 36 if ( ttface->gasp.numRanges > 0 ) in FT_Get_Gasp() 38 TT_GaspRange range = ttface->gasp.gaspRanges; in FT_Get_Gasp() 39 TT_GaspRange range_end = range + ttface->gasp.numRanges; in FT_Get_Gasp() 52 if ( ttface->gasp.version == 0 ) in FT_Get_Gasp()
|
D | ftsnames.c | 54 TT_Face ttface = (TT_Face)face; in FT_Get_Sfnt_Name() local 57 if ( idx < (FT_UInt)ttface->num_names ) in FT_Get_Sfnt_Name() 59 TT_Name entry = ttface->name_table.names + idx; in FT_Get_Sfnt_Name() 105 TT_Face ttface = (TT_Face)face; in FT_Get_Sfnt_LangTag() local 108 if ( ttface->name_table.format != 1 ) in FT_Get_Sfnt_LangTag() 112 langID - 0x8000U < ttface->name_table.numLangTagRecords ) in FT_Get_Sfnt_LangTag() 114 TT_LangTag entry = ttface->name_table.langTags + in FT_Get_Sfnt_LangTag()
|
D | ftobjs.c | 776 TT_Face ttface = (TT_Face)face; in FT_Load_Glyph() local 869 ttface->num_locations && in FT_Load_Glyph() 870 ttface->max_profile.maxSizeOfInstructions == 0 && in FT_Load_Glyph() 871 ttface->font_program_size == 0 && in FT_Load_Glyph() 872 ttface->cvt_program_size == 0 ) ) in FT_Load_Glyph() 4535 TT_Face ttface = (TT_Face)face; in FT_Render_Glyph_Internal() local 4536 SFNT_Service sfnt = (SFNT_Service)ttface->sfnt; in FT_Render_Glyph_Internal() 4557 error = sfnt->colr_blend( ttface, in FT_Render_Glyph_Internal() 5491 TT_Face ttface; in FT_Get_Color_Glyph_Layer() local 5505 ttface = (TT_Face)face; in FT_Get_Color_Glyph_Layer() [all …]
|
/external/freetype/src/truetype/ |
D | ttdriver.c | 203 tt_get_kerning( FT_Face ttface, /* TT_Face */ in tt_get_kerning() argument 208 TT_Face face = (TT_Face)ttface; in tt_get_kerning() 223 tt_get_advances( FT_Face ttface, in tt_get_advances() argument 230 TT_Face face = (TT_Face)ttface; in tt_get_advances() 239 if ( ( FT_IS_NAMED_INSTANCE( ttface ) || FT_IS_VARIATION( ttface ) ) && in tt_get_advances() 259 if ( ( FT_IS_NAMED_INSTANCE( ttface ) || FT_IS_VARIATION( ttface ) ) && in tt_get_advances() 298 TT_Face ttface = (TT_Face)size->face; in tt_size_select() local 314 SFNT_Service sfnt = (SFNT_Service)ttface->sfnt; in tt_size_select() 318 error = sfnt->load_strike_metrics( ttface, in tt_size_select() 343 TT_Face ttface = (TT_Face)size->face; in tt_size_request() local [all …]
|
D | ttobjs.c | 528 tt_check_single_notdef( FT_Face ttface ) in tt_check_single_notdef() argument 532 TT_Face face = (TT_Face)ttface; in tt_check_single_notdef() 563 error = FT_Get_Glyph_Name( ttface, glyph_index, buf, 8 ); in tt_check_single_notdef() 607 FT_Face ttface, /* TT_Face */ in tt_face_init() argument 615 TT_Face face = (TT_Face)ttface; in tt_face_init() 620 library = ttface->driver->root.library; in tt_face_init() 658 ttface->face_flags |= FT_FACE_FLAG_HINTER; in tt_face_init() 670 if ( tt_check_trickyness( ttface ) ) in tt_face_init() 671 ttface->face_flags |= FT_FACE_FLAG_TRICKY; in tt_face_init() 677 if ( FT_IS_SCALABLE( ttface ) ) in tt_face_init() [all …]
|
D | ttobjs.h | 357 FT_Face ttface, /* TT_Face */ 363 tt_face_done( FT_Face ttface ); /* TT_Face */
|
/external/freetype/src/cff/ |
D | cffdrivr.c | 112 cff_get_kerning( FT_Face ttface, /* TT_Face */ in cff_get_kerning() argument 117 TT_Face face = (TT_Face)ttface; in cff_get_kerning() 220 TT_Face ttface = (TT_Face)face; in cff_get_advances() local 229 !( ttface->variation_support & TT_FACE_FLAG_VAR_VADVANCE ) ) in cff_get_advances() 237 if ( !ttface->vertical_info ) in cff_get_advances() 245 ( (SFNT_Service)ttface->sfnt )->get_metrics( ttface, in cff_get_advances() 263 !( ttface->variation_support & TT_FACE_FLAG_VAR_HADVANCE ) ) in cff_get_advances() 268 if ( !ttface->horizontal.number_Of_HMetrics ) in cff_get_advances() 276 ( (SFNT_Service)ttface->sfnt )->get_metrics( ttface, in cff_get_advances()
|
/external/freetype/src/sfnt/ |
D | sfdriver.c | 188 TT_Face ttface = (TT_Face)face; in sfnt_get_name_index() local 204 FT_Error error = tt_face_get_ps_name( ttface, i, &gname ); in sfnt_get_name_index()
|
/external/freetype/ |
D | ChangeLog.27 | 253 (cff_get_advances): Use `ttface->variation_support'. 256 `ttface->variation_support'. 259 load_truetype_glyph): Use `ttface->variation_support'.
|