work around linker-error when building on the Mac
git-svn-id: http://skia.googlecode.com/svn/trunk@930 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
65dd8f8310
commit
8a5d692c03
@ -346,6 +346,9 @@ static bool getWidthAdvance(FT_Face face, int gId, int16_t* data) {
|
||||
// static
|
||||
SkAdvancedTypefaceMetrics* SkFontHost::GetAdvancedTypefaceMetrics(
|
||||
uint32_t fontID, bool perGlyphInfo) {
|
||||
#if defined(SK_BUILD_FOR_MAC)
|
||||
return NULL;
|
||||
#else
|
||||
SkAutoMutexAcquire ac(gFTMutex);
|
||||
FT_Library libInit = NULL;
|
||||
if (gFTCount == 0) {
|
||||
@ -510,6 +513,7 @@ SkAdvancedTypefaceMetrics* SkFontHost::GetAdvancedTypefaceMetrics(
|
||||
|
||||
unref_ft_face(face);
|
||||
return info;
|
||||
#endif
|
||||
}
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user