Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1199)

Unified Diff: third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzFace.cpp

Issue 1742593003: Revert of Move glyph lookup to hb-ot-font and remove glyph cache in HarfBuzzFace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzFace.cpp
diff --git a/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzFace.cpp b/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzFace.cpp
index b24d05fb351727b94fc99ec5338012ef5d429cf4..48e587be4220550748f7a0c032f79a2c3f11d2e9 100644
--- a/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzFace.cpp
+++ b/third_party/WebKit/Source/platform/fonts/shaping/HarfBuzzFace.cpp
@@ -48,6 +48,8 @@
namespace blink {
+const hb_tag_t HarfBuzzFace::vertTag = HB_TAG('v', 'e', 'r', 't');
+
// Though we have FontCache class, which provides the cache mechanism for
// WebKit's font objects, we also need additional caching layer for HarfBuzz
// to reduce the memory consumption because hb_face_t should be associated with
@@ -66,6 +68,7 @@
}
hb_face_t* face() { return m_face; }
+ HashMap<uint32_t, uint16_t>* glyphCache() { return &m_glyphCache; }
private:
explicit FaceCacheEntry(hb_face_t* face)
@@ -73,6 +76,7 @@
{ }
hb_face_t* m_face;
+ HashMap<uint32_t, uint16_t> m_glyphCache;
};
typedef HashMap<uint64_t, RefPtr<FaceCacheEntry>, WTF::IntHash<uint64_t>, WTF::UnsignedWithZeroKeyHashTraits<uint64_t>> HarfBuzzFaceCache;
@@ -92,7 +96,7 @@
result.storedValue->value = FaceCacheEntry::create(createFace());
result.storedValue->value->ref();
m_face = result.storedValue->value->face();
- prepareHarfBuzzFontData();
+ m_glyphCacheForFaceCacheEntry = result.storedValue->value->glyphCache();
}
HarfBuzzFace::~HarfBuzzFace()
@@ -105,18 +109,29 @@
harfBuzzFaceCache()->remove(m_uniqueID);
}
-// struct to carry user-pointer data for hb_font_t callback functions.
struct HarfBuzzFontData {
USING_FAST_MALLOC(HarfBuzzFontData);
WTF_MAKE_NONCOPYABLE(HarfBuzzFontData);
public:
- HarfBuzzFontData()
- : m_rangeFrom(0)
- , m_rangeTo(kMaxCodepoint)
+ HarfBuzzFontData(WTF::HashMap<uint32_t, uint16_t>* glyphCacheForFaceCacheEntry, hb_face_t* face, unsigned rangeFrom, unsigned rangeTo)
+ : m_glyphCacheForFaceCacheEntry(glyphCacheForFaceCacheEntry)
+ , m_face(face)
+ , m_hbOpenTypeFont(nullptr)
+ , m_rangeFrom(rangeFrom)
+ , m_rangeTo(rangeTo)
{ }
+
+ ~HarfBuzzFontData()
+ {
+ if (m_hbOpenTypeFont)
+ hb_font_destroy(m_hbOpenTypeFont);
+ }
SkPaint m_paint;
RefPtr<SimpleFontData> m_simpleFontData;
+ WTF::HashMap<uint32_t, uint16_t>* m_glyphCacheForFaceCacheEntry;
+ hb_face_t* m_face;
+ hb_font_t* m_hbOpenTypeFont;
unsigned m_rangeFrom;
unsigned m_rangeTo;
};
@@ -157,6 +172,10 @@
}
}
+#if !defined(HB_VERSION_ATLEAST)
+#define HB_VERSION_ATLEAST(major, minor, micro) 0
+#endif
+
static hb_bool_t harfBuzzGetGlyph(hb_font_t* hbFont, void* fontData, hb_codepoint_t unicode, hb_codepoint_t variationSelector, hb_codepoint_t* glyph, void* userData)
{
HarfBuzzFontData* hbFontData = reinterpret_cast<HarfBuzzFontData*>(fontData);
@@ -165,7 +184,34 @@
if (unicode < hbFontData->m_rangeFrom || unicode > hbFontData->m_rangeTo)
return false;
- return hb_font_get_glyph(hb_font_get_parent(hbFont), unicode, variationSelector, glyph);
+ if (variationSelector) {
+#if !HB_VERSION_ATLEAST(0, 9, 28)
+ return false;
+#else
+ // Skia does not support variation selectors, but hb does.
+ // We're not fully ready to switch to hb-ot-font yet,
+ // but are good enough to get glyph IDs for OpenType fonts.
+ if (!hbFontData->m_hbOpenTypeFont) {
+ hbFontData->m_hbOpenTypeFont = hb_font_create(hbFontData->m_face);
+ hb_ot_font_set_funcs(hbFontData->m_hbOpenTypeFont);
+ }
+ return hb_font_get_glyph(hbFontData->m_hbOpenTypeFont, unicode, variationSelector, glyph);
+ // When not found, glyph_func should return false rather than fallback to the base.
+ // http://lists.freedesktop.org/archives/harfbuzz/2015-May/004888.html
+#endif
+ }
+
+ WTF::HashMap<uint32_t, uint16_t>::AddResult result = hbFontData->m_glyphCacheForFaceCacheEntry->add(unicode, 0);
+ if (result.isNewEntry) {
+ SkPaint* paint = &hbFontData->m_paint;
+ paint->setTextEncoding(SkPaint::kUTF32_TextEncoding);
+ uint16_t glyph16;
+ paint->textToGlyphs(&unicode, sizeof(hb_codepoint_t), &glyph16);
+ result.storedValue->value = glyph16;
+ *glyph = glyph16;
+ }
+ *glyph = result.storedValue->value;
+ return !!*glyph;
}
static hb_position_t harfBuzzGetGlyphHorizontalAdvance(hb_font_t* hbFont, void* fontData, hb_codepoint_t glyph, void* userData)
@@ -175,6 +221,13 @@
SkiaGetGlyphWidthAndExtents(&hbFontData->m_paint, glyph, &advance, 0);
return advance;
+}
+
+static hb_bool_t harfBuzzGetGlyphHorizontalOrigin(hb_font_t* hbFont, void* fontData, hb_codepoint_t glyph, hb_position_t* x, hb_position_t* y, void* userData)
+{
+ // Just return true, following the way that HarfBuzz-FreeType
+ // implementation does.
+ return true;
}
static hb_bool_t harfBuzzGetGlyphVerticalOrigin(hb_font_t* hbFont, void* fontData, hb_codepoint_t glyph, hb_position_t* x, hb_position_t* y, void* userData)
@@ -245,6 +298,7 @@
hb_font_funcs_set_glyph_func(harfBuzzSkiaFontFuncs, harfBuzzGetGlyph, 0, 0);
hb_font_funcs_set_glyph_h_advance_func(harfBuzzSkiaFontFuncs, harfBuzzGetGlyphHorizontalAdvance, 0, 0);
hb_font_funcs_set_glyph_h_kerning_func(harfBuzzSkiaFontFuncs, harfBuzzGetGlyphHorizontalKerning, 0, 0);
+ hb_font_funcs_set_glyph_h_origin_func(harfBuzzSkiaFontFuncs, harfBuzzGetGlyphHorizontalOrigin, 0, 0);
hb_font_funcs_set_glyph_v_advance_func(harfBuzzSkiaFontFuncs, harfBuzzGetGlyphVerticalAdvance, 0, 0);
hb_font_funcs_set_glyph_v_origin_func(harfBuzzSkiaFontFuncs, harfBuzzGetGlyphVerticalOrigin, 0, 0);
hb_font_funcs_set_glyph_extents_func(harfBuzzSkiaFontFuncs, harfBuzzGetGlyphExtents, 0, 0);
@@ -276,6 +330,12 @@
}
#endif
+static void destroyHarfBuzzFontData(void* userData)
+{
+ HarfBuzzFontData* hbFontData = reinterpret_cast<HarfBuzzFontData*>(userData);
+ delete hbFontData;
+}
+
hb_face_t* HarfBuzzFace::createFace()
{
#if OS(MACOSX)
@@ -287,27 +347,19 @@
return face;
}
-void HarfBuzzFace::prepareHarfBuzzFontData()
-{
- m_harfBuzzFontData = adoptPtr(new HarfBuzzFontData());
- m_harfBuzzFontData->m_simpleFontData = FontCache::fontCache()->fontDataFromFontPlatformData(m_platformData);
- ASSERT(m_harfBuzzFontData->m_simpleFontData);
- OwnPtr<hb_font_t> otFont = adoptPtr(hb_font_create(m_face));
- hb_ot_font_set_funcs(otFont.get());
- // Creating a sub font means that non-available functions
- // are found from the parent.
- m_unscaledFont = adoptPtr(hb_font_create_sub_font(otFont.get()));
- hb_font_set_funcs(m_unscaledFont.get(), harfBuzzSkiaGetFontFuncs(), m_harfBuzzFontData.get(), nullptr);
-}
-
-hb_font_t* HarfBuzzFace::getScaledFont(unsigned rangeFrom, unsigned rangeTo)
-{
- m_platformData->setupPaint(&m_harfBuzzFontData->m_paint);
- m_harfBuzzFontData->m_rangeFrom = rangeFrom;
- m_harfBuzzFontData->m_rangeTo = rangeTo;
- int scale = SkiaScalarToHarfBuzzPosition(m_platformData->size());
- hb_font_set_scale(m_unscaledFont.get(), scale, scale);
- return m_unscaledFont.get();
+hb_font_t* HarfBuzzFace::createFont(unsigned rangeFrom, unsigned rangeTo) const
+{
+ HarfBuzzFontData* hbFontData = new HarfBuzzFontData(m_glyphCacheForFaceCacheEntry, m_face, rangeFrom, rangeTo);
+ m_platformData->setupPaint(&hbFontData->m_paint);
+ hbFontData->m_simpleFontData = FontCache::fontCache()->fontDataFromFontPlatformData(m_platformData);
+ ASSERT(hbFontData->m_simpleFontData);
+ hb_font_t* font = hb_font_create(m_face);
+ hb_font_set_funcs(font, harfBuzzSkiaGetFontFuncs(), hbFontData, destroyHarfBuzzFontData);
+ float size = m_platformData->size();
+ int scale = SkiaScalarToHarfBuzzPosition(size);
+ hb_font_set_scale(font, scale, scale);
+ hb_font_make_immutable(font);
+ return font;
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698