зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1557044 - Don't eagerly load cmap of user font in gfxMacPlatformFontList::MakePlatformFont, let it load on first use like other platforms. r=heycam
Differential Revision: https://phabricator.services.mozilla.com/D33796 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
023205187f
Коммит
d67f73d9bc
|
@ -1311,19 +1311,21 @@ gfxFontEntry* gfxMacPlatformFontList::LookupLocalFont(const nsACString& aFontNam
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
newFontEntry = new MacOSFontEntry(aFontName, fontRef, aWeightForEntry, aStretchForEntry,
|
||||
aStyleForEntry, false, true);
|
||||
newFontEntry = new MacOSFontEntry(aFontName, fontRef, aWeightForEntry,
|
||||
aStretchForEntry, aStyleForEntry, false,
|
||||
true);
|
||||
::CFRelease(fontRef);
|
||||
|
||||
return newFontEntry;
|
||||
}
|
||||
|
||||
static void ReleaseData(void* info, const void* data, size_t size) { free((void*)data); }
|
||||
static void ReleaseData(void* info, const void* data, size_t size) {
|
||||
free((void*)data);
|
||||
}
|
||||
|
||||
gfxFontEntry* gfxMacPlatformFontList::MakePlatformFont(const nsACString& aFontName,
|
||||
WeightRange aWeightForEntry,
|
||||
StretchRange aStretchForEntry,
|
||||
SlantStyleRange aStyleForEntry,
|
||||
gfxFontEntry* gfxMacPlatformFontList::MakePlatformFont(
|
||||
const nsACString& aFontName, WeightRange aWeightForEntry,
|
||||
StretchRange aStretchForEntry, SlantStyleRange aStyleForEntry,
|
||||
const uint8_t* aFontData, uint32_t aLength) {
|
||||
NS_ASSERTION(aFontData, "MakePlatformFont called with null data");
|
||||
|
||||
|
@ -1345,24 +1347,13 @@ gfxFontEntry* gfxMacPlatformFontList::MakePlatformFont(const nsACString& aFontNa
|
|||
}
|
||||
|
||||
auto newFontEntry =
|
||||
MakeUnique<MacOSFontEntry>(NS_ConvertUTF16toUTF8(uniqueName), fontRef, aWeightForEntry,
|
||||
aStretchForEntry, aStyleForEntry, true, false);
|
||||
MakeUnique<MacOSFontEntry>(NS_ConvertUTF16toUTF8(uniqueName), fontRef,
|
||||
aWeightForEntry, aStretchForEntry,
|
||||
aStyleForEntry, true, false);
|
||||
::CFRelease(fontRef);
|
||||
|
||||
// if succeeded and font cmap is good, return the new font
|
||||
if (NS_SUCCEEDED(newFontEntry->ReadCMAP())) {
|
||||
return newFontEntry.release();
|
||||
}
|
||||
|
||||
// if something is funky about this font, delete immediately
|
||||
|
||||
#if DEBUG
|
||||
NS_WARNING("downloaded font not loaded properly");
|
||||
#endif
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// Webkit code uses a system font meta name, so mimic that here
|
||||
// WebCore/platform/graphics/mac/FontCacheMac.mm
|
||||
static const char kSystemFont_system[] = "-apple-system";
|
||||
|
|
Загрузка…
Ссылка в новой задаче