⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 286139 in webkit


Ignore:
Timestamp:
Nov 23, 2021, 5:25:24 PM (5 years ago)
Author:
mmaxfield@apple.com
Message:

Delete dead shaping code
https://bugs.webkit.org/show_bug.cgi?id=233453

Reviewed by Cameron McCormack.

It's unreferenced.

No new tests because there is no behavior change.

  • platform/graphics/WidthIterator.cpp:

(WebCore::isSoftBankEmoji): Deleted.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r286138 r286139  
     12021-11-23  Myles C. Maxfield  <mmaxfield@apple.com>
     2
     3        Delete dead shaping code
     4        https://bugs.webkit.org/show_bug.cgi?id=233453
     5
     6        Reviewed by Cameron McCormack.
     7
     8        It's unreferenced.
     9
     10        No new tests because there is no behavior change.
     11
     12        * platform/graphics/WidthIterator.cpp:
     13        (WebCore::isSoftBankEmoji): Deleted.
     14
    1152021-11-23  Don Olmstead  <don.olmstead@sony.com>
    216
  • trunk/Source/WebCore/platform/graphics/WidthIterator.cpp

    r282304 r286139  
    7676    float advanceAtCharacter;
    7777};
    78 
    79 static inline bool isSoftBankEmoji(UChar32 codepoint)
    80 {
    81     return codepoint >= 0xE001 && codepoint <= 0xE537;
    82 }
    8378
    8479inline auto WidthIterator::applyFontTransforms(GlyphBuffer& glyphBuffer, unsigned lastGlyphCount, const Font& font, CharactersTreatedAsSpace& charactersTreatedAsSpace) -> ApplyFontTransformsResult
Note: See TracChangeset for help on using the changeset viewer.