Home | History | Annotate | Download | only in base

Lines Matching refs:face

113   _tt_check_patents_in_table( FT_Face   face,
116 FT_Stream stream = face->stream;
122 FT_FACE_FIND_SERVICE( face, service, SFNT_TABLE );
131 error = service->table_info( face, i,
147 _tt_face_check_patents( FT_Face face )
149 FT_Stream stream = face->stream;
157 result = _tt_check_patents_in_table( face, TTAG_fpgm );
161 result = _tt_check_patents_in_table( face, TTAG_prep );
165 FT_FACE_FIND_SERVICE( face, service, TT_GLYF );
169 for ( gindex = 0; gindex < (FT_UInt)face->num_glyphs; gindex++ )
175 offset = service->get_location( face, gindex, &size );
250 FT_Face_CheckTrueTypePatents( FT_Face face )
255 if ( face && FT_IS_SFNT( face ) )
256 result = _tt_face_check_patents( face );
265 FT_Face_SetUnpatentedHinting( FT_Face face,
273 if ( face && FT_IS_SFNT( face ) )
275 result = !face->internal->ignore_unpatented_hinter;
276 face->internal->ignore_unpatented_hinter = !value;
279 FT_UNUSED( face );