| /* |
| * Copyright (C) 2017 Apple Inc. All rights reserved. |
| * Copyright (C) 2017 Igalia S.L. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
| * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "config.h" |
| #include "ComplexTextController.h" |
| |
| #include "CairoUtilities.h" |
| #include "FontCascade.h" |
| #include "FontTaggedSettings.h" |
| #include "HbUniquePtr.h" |
| #include "SurrogatePairAwareTextIterator.h" |
| #include <hb-ft.h> |
| #include <hb-icu.h> |
| #include <hb-ot.h> |
| |
| #if ENABLE(VARIATION_FONTS) |
| #include FT_MULTIPLE_MASTERS_H |
| #endif |
| |
| namespace WebCore { |
| |
| static inline float harfBuzzPositionToFloat(hb_position_t value) |
| { |
| return static_cast<float>(value) / (1 << 16); |
| } |
| |
| static inline hb_position_t floatToHarfBuzzPosition(float value) |
| { |
| return static_cast<hb_position_t>(value * (1 << 16)); |
| } |
| |
| static inline hb_position_t doubleToHarfBuzzPosition(double value) |
| { |
| return static_cast<hb_position_t>(value * (1 << 16)); |
| } |
| |
| static hb_font_funcs_t* harfBuzzFontFunctions() |
| { |
| static hb_font_funcs_t* fontFunctions = nullptr; |
| |
| // We don't set callback functions which we can't support. |
| // Harfbuzz will use the fallback implementation if they aren't set. |
| if (!fontFunctions) { |
| fontFunctions = hb_font_funcs_create(); |
| #if HB_VERSION_ATLEAST(1, 2, 3) |
| hb_font_funcs_set_nominal_glyph_func(fontFunctions, [](hb_font_t*, void* context, hb_codepoint_t unicode, hb_codepoint_t* glyph, void*) -> hb_bool_t { |
| auto& font = *static_cast<Font*>(context); |
| *glyph = font.glyphForCharacter(unicode); |
| return !!*glyph; |
| }, nullptr, nullptr); |
| |
| hb_font_funcs_set_variation_glyph_func(fontFunctions, [](hb_font_t*, void* context, hb_codepoint_t unicode, hb_codepoint_t variation, hb_codepoint_t* glyph, void*) -> hb_bool_t { |
| auto& font = *static_cast<Font*>(context); |
| auto* scaledFont = font.platformData().scaledFont(); |
| ASSERT(scaledFont); |
| |
| CairoFtFaceLocker cairoFtFaceLocker(scaledFont); |
| if (FT_Face ftFace = cairoFtFaceLocker.ftFace()) { |
| *glyph = FT_Face_GetCharVariantIndex(ftFace, unicode, variation); |
| return !!*glyph; |
| } |
| return false; |
| }, nullptr, nullptr); |
| #else |
| hb_font_funcs_set_glyph_func(fontFunctions, [](hb_font_t*, void* context, hb_codepoint_t unicode, hb_codepoint_t, hb_codepoint_t* glyph, void*) -> hb_bool_t { |
| auto& font = *static_cast<Font*>(context); |
| *glyph = font.glyphForCharacter(unicode); |
| return !!*glyph; |
| }, nullptr, nullptr); |
| #endif |
| hb_font_funcs_set_glyph_h_advance_func(fontFunctions, [](hb_font_t*, void* context, hb_codepoint_t point, void*) -> hb_bool_t { |
| auto& font = *static_cast<Font*>(context); |
| auto* scaledFont = font.platformData().scaledFont(); |
| ASSERT(scaledFont); |
| |
| cairo_text_extents_t glyphExtents; |
| cairo_glyph_t glyph = { point, 0, 0 }; |
| cairo_scaled_font_glyph_extents(scaledFont, &glyph, 1, &glyphExtents); |
| |
| bool hasVerticalGlyphs = glyphExtents.y_advance; |
| return doubleToHarfBuzzPosition(hasVerticalGlyphs ? -glyphExtents.y_advance : glyphExtents.x_advance); |
| }, nullptr, nullptr); |
| |
| hb_font_funcs_set_glyph_h_origin_func(fontFunctions, [](hb_font_t*, void*, hb_codepoint_t, hb_position_t*, hb_position_t*, void*) -> hb_bool_t { |
| // Just return true, following the way that Harfbuzz-FreeType implementation does. |
| return true; |
| }, nullptr, nullptr); |
| |
| hb_font_funcs_set_glyph_extents_func(fontFunctions, [](hb_font_t*, void* context, hb_codepoint_t point, hb_glyph_extents_t* extents, void*) -> hb_bool_t { |
| auto& font = *static_cast<Font*>(context); |
| auto* scaledFont = font.platformData().scaledFont(); |
| ASSERT(scaledFont); |
| |
| cairo_text_extents_t glyphExtents; |
| cairo_glyph_t glyph = { point, 0, 0 }; |
| cairo_scaled_font_glyph_extents(scaledFont, &glyph, 1, &glyphExtents); |
| |
| bool hasVerticalGlyphs = glyphExtents.y_advance; |
| extents->x_bearing = doubleToHarfBuzzPosition(glyphExtents.x_bearing); |
| extents->y_bearing = doubleToHarfBuzzPosition(hasVerticalGlyphs ? -glyphExtents.y_bearing : glyphExtents.y_bearing); |
| extents->width = doubleToHarfBuzzPosition(hasVerticalGlyphs ? -glyphExtents.height : glyphExtents.width); |
| extents->height = doubleToHarfBuzzPosition(hasVerticalGlyphs ? glyphExtents.width : glyphExtents.height); |
| return true; |
| }, nullptr, nullptr); |
| |
| hb_font_funcs_make_immutable(fontFunctions); |
| } |
| return fontFunctions; |
| } |
| |
| ComplexTextController::ComplexTextRun::ComplexTextRun(hb_buffer_t* buffer, const Font& font, const UChar* characters, unsigned stringLocation, unsigned stringLength, unsigned indexBegin, unsigned indexEnd) |
| : m_initialAdvance(0, 0) |
| , m_font(font) |
| , m_characters(characters) |
| , m_stringLength(stringLength) |
| , m_indexBegin(indexBegin) |
| , m_indexEnd(indexEnd) |
| , m_glyphCount(hb_buffer_get_length(buffer)) |
| , m_stringLocation(stringLocation) |
| , m_isLTR(HB_DIRECTION_IS_FORWARD(hb_buffer_get_direction(buffer))) |
| { |
| if (!m_glyphCount) |
| return; |
| |
| m_glyphs.grow(m_glyphCount); |
| m_baseAdvances.grow(m_glyphCount); |
| m_glyphOrigins.grow(m_glyphCount); |
| m_coreTextIndices.grow(m_glyphCount); |
| |
| hb_glyph_info_t* glyphInfos = hb_buffer_get_glyph_infos(buffer, nullptr); |
| hb_glyph_position_t* glyphPositions = hb_buffer_get_glyph_positions(buffer, nullptr); |
| |
| // HarfBuzz returns the shaping result in visual order. We don't need to flip for RTL. |
| for (unsigned i = 0; i < m_glyphCount; ++i) { |
| m_coreTextIndices[i] = glyphInfos[i].cluster; |
| |
| uint16_t glyph = glyphInfos[i].codepoint; |
| if (m_font.isZeroWidthSpaceGlyph(glyph) || !m_font.platformData().size()) { |
| m_glyphs[i] = glyph; |
| m_baseAdvances[i] = { }; |
| m_glyphOrigins[i] = { }; |
| continue; |
| } |
| |
| float offsetX = harfBuzzPositionToFloat(glyphPositions[i].x_offset); |
| float offsetY = harfBuzzPositionToFloat(glyphPositions[i].y_offset); |
| float advanceX = harfBuzzPositionToFloat(glyphPositions[i].x_advance); |
| float advanceY = harfBuzzPositionToFloat(glyphPositions[i].y_advance); |
| |
| m_glyphs[i] = glyph; |
| m_baseAdvances[i] = { advanceX, advanceY }; |
| m_glyphOrigins[i] = { offsetX, offsetY }; |
| } |
| m_initialAdvance = toFloatSize(m_glyphOrigins[0]); |
| } |
| |
| using FeaturesMap = HashMap<FontTag, int, FourCharacterTagHash, FourCharacterTagHashTraits>; |
| |
| static void setFeatureSettingsFromVariants(const FontVariantSettings& variantSettings, FeaturesMap& features) |
| { |
| switch (variantSettings.commonLigatures) { |
| case FontVariantLigatures::Normal: |
| break; |
| case FontVariantLigatures::Yes: |
| features.set(fontFeatureTag("liga"), 1); |
| features.set(fontFeatureTag("clig"), 1); |
| break; |
| case FontVariantLigatures::No: |
| features.set(fontFeatureTag("liga"), 0); |
| features.set(fontFeatureTag("clig"), 0); |
| break; |
| } |
| |
| switch (variantSettings.discretionaryLigatures) { |
| case FontVariantLigatures::Normal: |
| break; |
| case FontVariantLigatures::Yes: |
| features.set(fontFeatureTag("dlig"), 1); |
| break; |
| case FontVariantLigatures::No: |
| features.set(fontFeatureTag("dlig"), 0); |
| break; |
| } |
| |
| switch (variantSettings.historicalLigatures) { |
| case FontVariantLigatures::Normal: |
| break; |
| case FontVariantLigatures::Yes: |
| features.set(fontFeatureTag("hlig"), 1); |
| break; |
| case FontVariantLigatures::No: |
| features.set(fontFeatureTag("hlig"), 0); |
| break; |
| } |
| |
| switch (variantSettings.contextualAlternates) { |
| case FontVariantLigatures::Normal: |
| break; |
| case FontVariantLigatures::Yes: |
| features.set(fontFeatureTag("calt"), 1); |
| break; |
| case FontVariantLigatures::No: |
| features.set(fontFeatureTag("calt"), 0); |
| break; |
| } |
| |
| switch (variantSettings.position) { |
| case FontVariantPosition::Normal: |
| break; |
| case FontVariantPosition::Subscript: |
| features.set(fontFeatureTag("subs"), 1); |
| break; |
| case FontVariantPosition::Superscript: |
| features.set(fontFeatureTag("sups"), 1); |
| break; |
| } |
| |
| switch (variantSettings.caps) { |
| case FontVariantCaps::Normal: |
| break; |
| case FontVariantCaps::AllSmall: |
| features.set(fontFeatureTag("c2sc"), 1); |
| FALLTHROUGH; |
| case FontVariantCaps::Small: |
| features.set(fontFeatureTag("smcp"), 1); |
| break; |
| case FontVariantCaps::AllPetite: |
| features.set(fontFeatureTag("c2pc"), 1); |
| FALLTHROUGH; |
| case FontVariantCaps::Petite: |
| features.set(fontFeatureTag("pcap"), 1); |
| break; |
| case FontVariantCaps::Unicase: |
| features.set(fontFeatureTag("unic"), 1); |
| break; |
| case FontVariantCaps::Titling: |
| features.set(fontFeatureTag("titl"), 1); |
| break; |
| } |
| |
| switch (variantSettings.numericFigure) { |
| case FontVariantNumericFigure::Normal: |
| break; |
| case FontVariantNumericFigure::LiningNumbers: |
| features.set(fontFeatureTag("lnum"), 1); |
| break; |
| case FontVariantNumericFigure::OldStyleNumbers: |
| features.set(fontFeatureTag("onum"), 1); |
| break; |
| } |
| |
| switch (variantSettings.numericSpacing) { |
| case FontVariantNumericSpacing::Normal: |
| break; |
| case FontVariantNumericSpacing::ProportionalNumbers: |
| features.set(fontFeatureTag("pnum"), 1); |
| break; |
| case FontVariantNumericSpacing::TabularNumbers: |
| features.set(fontFeatureTag("tnum"), 1); |
| break; |
| } |
| |
| switch (variantSettings.numericFraction) { |
| case FontVariantNumericFraction::Normal: |
| break; |
| case FontVariantNumericFraction::DiagonalFractions: |
| features.set(fontFeatureTag("frac"), 1); |
| break; |
| case FontVariantNumericFraction::StackedFractions: |
| features.set(fontFeatureTag("afrc"), 1); |
| break; |
| } |
| |
| switch (variantSettings.numericOrdinal) { |
| case FontVariantNumericOrdinal::Normal: |
| break; |
| case FontVariantNumericOrdinal::Yes: |
| features.set(fontFeatureTag("ordn"), 1); |
| break; |
| } |
| |
| switch (variantSettings.numericSlashedZero) { |
| case FontVariantNumericSlashedZero::Normal: |
| break; |
| case FontVariantNumericSlashedZero::Yes: |
| features.set(fontFeatureTag("zero"), 1); |
| break; |
| } |
| |
| switch (variantSettings.alternates) { |
| case FontVariantAlternates::Normal: |
| break; |
| case FontVariantAlternates::HistoricalForms: |
| features.set(fontFeatureTag("hist"), 1); |
| break; |
| } |
| |
| switch (variantSettings.eastAsianVariant) { |
| case FontVariantEastAsianVariant::Normal: |
| break; |
| case FontVariantEastAsianVariant::Jis78: |
| features.set(fontFeatureTag("jp78"), 1); |
| break; |
| case FontVariantEastAsianVariant::Jis83: |
| features.set(fontFeatureTag("jp83"), 1); |
| break; |
| case FontVariantEastAsianVariant::Jis90: |
| features.set(fontFeatureTag("jp90"), 1); |
| break; |
| case FontVariantEastAsianVariant::Jis04: |
| features.set(fontFeatureTag("jp04"), 1); |
| break; |
| case FontVariantEastAsianVariant::Simplified: |
| features.set(fontFeatureTag("smpl"), 1); |
| break; |
| case FontVariantEastAsianVariant::Traditional: |
| features.set(fontFeatureTag("trad"), 1); |
| break; |
| } |
| |
| switch (variantSettings.eastAsianWidth) { |
| case FontVariantEastAsianWidth::Normal: |
| break; |
| case FontVariantEastAsianWidth::Full: |
| features.set(fontFeatureTag("fwid"), 1); |
| break; |
| case FontVariantEastAsianWidth::Proportional: |
| features.set(fontFeatureTag("pwid"), 1); |
| break; |
| } |
| |
| switch (variantSettings.eastAsianRuby) { |
| case FontVariantEastAsianRuby::Normal: |
| break; |
| case FontVariantEastAsianRuby::Yes: |
| features.set(fontFeatureTag("ruby"), 1); |
| break; |
| } |
| } |
| |
| static Vector<hb_feature_t, 4> fontFeatures(const FontCascade& font, const FontPlatformData& fontPlatformData) |
| { |
| FeaturesMap featuresToBeApplied; |
| |
| // 7.2. Feature precedence |
| // https://www.w3.org/TR/css-fonts-3/#feature-precedence |
| |
| // 1. Font features enabled by default, including features required for a given script. |
| |
| // 2. If the font is defined via an @font-face rule, the font features implied by the |
| // font-feature-settings descriptor in the @font-face rule. |
| auto* fcPattern = fontPlatformData.fcPattern(); |
| FcChar8* fcFontFeature; |
| for (int i = 0; FcPatternGetString(fcPattern, FC_FONT_FEATURES, i, &fcFontFeature) == FcResultMatch; ++i) |
| featuresToBeApplied.set(fontFeatureTag(reinterpret_cast<char*>(fcFontFeature)), 1); |
| |
| // 3. Font features implied by the value of the โfont-variantโ property, the related โfont-variantโ |
| // subproperties and any other CSS property that uses OpenType features. |
| setFeatureSettingsFromVariants(font.fontDescription().variantSettings(), featuresToBeApplied); |
| featuresToBeApplied.set(fontFeatureTag("kern"), font.enableKerning() ? 1 : 0); |
| |
| // 4. Feature settings determined by properties other than โfont-variantโ or โfont-feature-settingsโ. |
| if (fontPlatformData.orientation() == FontOrientation::Vertical) { |
| featuresToBeApplied.set(fontFeatureTag("vert"), 1); |
| featuresToBeApplied.set(fontFeatureTag("vrt2"), 1); |
| } |
| |
| // 5. Font features implied by the value of โfont-feature-settingsโ property. |
| for (auto& feature : font.fontDescription().featureSettings()) |
| featuresToBeApplied.set(feature.tag(), feature.value()); |
| |
| Vector<hb_feature_t, 4> features; |
| features.reserveInitialCapacity(featuresToBeApplied.size()); |
| for (auto& iter : featuresToBeApplied) { |
| auto& tag = iter.key; |
| features.append({ HB_TAG(tag[0], tag[1], tag[2], tag[3]), static_cast<uint32_t>(iter.value), 0, static_cast<unsigned>(-1) }); |
| } |
| |
| return features; |
| } |
| |
| static std::optional<UScriptCode> characterScript(UChar32 character) |
| { |
| UErrorCode errorCode = U_ZERO_ERROR; |
| UScriptCode script = uscript_getScript(character, &errorCode); |
| if (U_FAILURE(errorCode)) |
| return std::nullopt; |
| return script; |
| } |
| |
| struct HBRun { |
| unsigned startIndex; |
| unsigned endIndex; |
| UScriptCode script; |
| }; |
| |
| static std::optional<HBRun> findNextRun(const UChar* characters, unsigned length, unsigned offset) |
| { |
| SurrogatePairAwareTextIterator textIterator(characters + offset, offset, length, length); |
| UChar32 character; |
| unsigned clusterLength = 0; |
| if (!textIterator.consume(character, clusterLength)) |
| return std::nullopt; |
| |
| auto currentScript = characterScript(character); |
| if (!currentScript) |
| return std::nullopt; |
| |
| unsigned startIndex = offset; |
| for (textIterator.advance(clusterLength); textIterator.consume(character, clusterLength); textIterator.advance(clusterLength)) { |
| if (FontCascade::treatAsZeroWidthSpace(character)) |
| continue; |
| |
| auto nextScript = characterScript(character); |
| if (!nextScript) |
| return std::nullopt; |
| |
| // ยง5.1 Handling Characters with the Common Script Property. |
| // Programs must resolve any of the special Script property values, such as Common, |
| // based on the context of the surrounding characters. A simple heuristic uses the |
| // script of the preceding character, which works well in many cases. |
| // http://www.unicode.org/reports/tr24/#Common. |
| // |
| // FIXME: cover all other cases mentioned in the spec (ie. brackets or quotation marks). |
| // https://bugs.webkit.org/show_bug.cgi?id=177003. |
| // |
| // If next script is inherited or common, keep using the current script. |
| if (nextScript == USCRIPT_INHERITED || nextScript == USCRIPT_COMMON) |
| continue; |
| // If current script is inherited or common, set the next script as current. |
| if (currentScript == USCRIPT_INHERITED || currentScript == USCRIPT_COMMON) { |
| currentScript = nextScript; |
| continue; |
| } |
| |
| if (currentScript != nextScript && !uscript_hasScript(character, currentScript.value())) |
| return std::optional<HBRun>({ startIndex, textIterator.currentIndex(), currentScript.value() }); |
| } |
| |
| return std::optional<HBRun>({ startIndex, textIterator.currentIndex(), currentScript.value() }); |
| } |
| |
| static hb_script_t findScriptForVerticalGlyphSubstitution(hb_face_t* face) |
| { |
| static const unsigned maxCount = 32; |
| |
| unsigned scriptCount = maxCount; |
| hb_tag_t scriptTags[maxCount]; |
| hb_ot_layout_table_get_script_tags(face, HB_OT_TAG_GSUB, 0, &scriptCount, scriptTags); |
| for (unsigned scriptIndex = 0; scriptIndex < scriptCount; ++scriptIndex) { |
| unsigned languageCount = maxCount; |
| hb_tag_t languageTags[maxCount]; |
| hb_ot_layout_script_get_language_tags(face, HB_OT_TAG_GSUB, scriptIndex, 0, &languageCount, languageTags); |
| for (unsigned languageIndex = 0; languageIndex < languageCount; ++languageIndex) { |
| unsigned featureIndex; |
| if (hb_ot_layout_language_find_feature(face, HB_OT_TAG_GSUB, scriptIndex, languageIndex, HB_TAG('v', 'e', 'r', 't'), &featureIndex) |
| || hb_ot_layout_language_find_feature(face, HB_OT_TAG_GSUB, scriptIndex, languageIndex, HB_TAG('v', 'r', 't', '2'), &featureIndex)) |
| return hb_ot_tag_to_script(scriptTags[scriptIndex]); |
| } |
| } |
| return HB_SCRIPT_INVALID; |
| } |
| |
| void ComplexTextController::collectComplexTextRunsForCharacters(const UChar* characters, unsigned length, unsigned stringLocation, const Font* font) |
| { |
| if (!font) { |
| // Create a run of missing glyphs from the primary font. |
| m_complexTextRuns.append(ComplexTextRun::create(m_font.primaryFont(), characters, stringLocation, length, 0, length, m_run.ltr())); |
| return; |
| } |
| |
| Vector<HBRun> runList; |
| unsigned offset = 0; |
| while (offset < length) { |
| auto run = findNextRun(characters, length, offset); |
| if (!run) |
| break; |
| runList.append(run.value()); |
| offset = run->endIndex; |
| } |
| |
| size_t runCount = runList.size(); |
| if (!runCount) |
| return; |
| |
| const auto& fontPlatformData = font->platformData(); |
| auto* scaledFont = fontPlatformData.scaledFont(); |
| CairoFtFaceLocker cairoFtFaceLocker(scaledFont); |
| FT_Face ftFace = cairoFtFaceLocker.ftFace(); |
| if (!ftFace) |
| return; |
| |
| HbUniquePtr<hb_face_t> face(hb_ft_face_create_cached(ftFace)); |
| HbUniquePtr<hb_font_t> harfBuzzFont(hb_font_create(face.get())); |
| hb_font_set_funcs(harfBuzzFont.get(), harfBuzzFontFunctions(), const_cast<Font*>(font), nullptr); |
| const float size = fontPlatformData.size(); |
| if (floorf(size) == size) |
| hb_font_set_ppem(harfBuzzFont.get(), size, size); |
| int scale = floatToHarfBuzzPosition(size); |
| hb_font_set_scale(harfBuzzFont.get(), scale, scale); |
| |
| #if ENABLE(VARIATION_FONTS) |
| FT_MM_Var* ftMMVar; |
| if (!FT_Get_MM_Var(ftFace, &ftMMVar)) { |
| Vector<FT_Fixed, 4> coords; |
| coords.resize(ftMMVar->num_axis); |
| if (!FT_Get_Var_Design_Coordinates(ftFace, coords.size(), coords.data())) { |
| Vector<hb_variation_t, 4> variations(coords.size()); |
| for (FT_UInt i = 0; i < ftMMVar->num_axis; ++i) { |
| variations[i].tag = ftMMVar->axis[i].tag; |
| variations[i].value = coords[i] / 65536.0; |
| } |
| hb_font_set_variations(harfBuzzFont.get(), variations.data(), variations.size()); |
| } |
| FT_Done_MM_Var(ftFace->glyph->library, ftMMVar); |
| } |
| #endif |
| |
| hb_font_make_immutable(harfBuzzFont.get()); |
| |
| auto features = fontFeatures(m_font, fontPlatformData); |
| HbUniquePtr<hb_buffer_t> buffer(hb_buffer_create()); |
| if (fontPlatformData.orientation() == FontOrientation::Vertical) |
| hb_buffer_set_script(buffer.get(), findScriptForVerticalGlyphSubstitution(face.get())); |
| |
| for (unsigned i = 0; i < runCount; ++i) { |
| auto& run = runList[m_run.rtl() ? runCount - i - 1 : i]; |
| |
| if (fontPlatformData.orientation() != FontOrientation::Vertical) |
| hb_buffer_set_script(buffer.get(), hb_icu_script_to_script(run.script)); |
| if (!m_mayUseNaturalWritingDirection || m_run.directionalOverride()) |
| hb_buffer_set_direction(buffer.get(), m_run.rtl() ? HB_DIRECTION_RTL : HB_DIRECTION_LTR); |
| else { |
| // Leaving direction to HarfBuzz to guess is *really* bad, but will do for now. |
| hb_buffer_guess_segment_properties(buffer.get()); |
| } |
| hb_buffer_add_utf16(buffer.get(), reinterpret_cast<const uint16_t*>(characters), length, run.startIndex, run.endIndex - run.startIndex); |
| |
| hb_shape(harfBuzzFont.get(), buffer.get(), features.isEmpty() ? nullptr : features.data(), features.size()); |
| m_complexTextRuns.append(ComplexTextRun::create(buffer.get(), *font, characters, stringLocation, length, run.startIndex, run.endIndex)); |
| hb_buffer_reset(buffer.get()); |
| } |
| } |
| |
| } // namespace WebCore |