forked from minhngoc25a/freetype2
Minor.
This commit is contained in:
parent
cd346da588
commit
9cc2d46785
|
@ -143,7 +143,7 @@
|
|||
setIntermediateAxis( FT_Face face )
|
||||
{
|
||||
// only handle Multiple Masters and GX variation fonts
|
||||
if ( !( face->face_flags & FT_FACE_FLAG_MULTIPLE_MASTERS ) )
|
||||
if ( !FT_HAS_MULTIPLE_MASTERS( face ) )
|
||||
return;
|
||||
|
||||
// get variation data for current instance
|
||||
|
|
|
@ -194,7 +194,7 @@
|
|||
FT_Fixed *advances )
|
||||
{
|
||||
FT_UInt nn;
|
||||
TT_Face face = (TT_Face) ttface;
|
||||
TT_Face face = (TT_Face) ttface;
|
||||
|
||||
|
||||
/* XXX: TODO: check for sbits */
|
||||
|
@ -228,6 +228,7 @@
|
|||
return FT_Err_Ok;
|
||||
}
|
||||
|
||||
|
||||
/*************************************************************************/
|
||||
/*************************************************************************/
|
||||
/*************************************************************************/
|
||||
|
|
Loading…
Reference in New Issue