Changeset 286139 in webkit
- Timestamp:
- Nov 23, 2021, 5:25:24 PM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/WidthIterator.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r286138 r286139 1 2021-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 1 15 2021-11-23 Don Olmstead <don.olmstead@sony.com> 2 16 -
trunk/Source/WebCore/platform/graphics/WidthIterator.cpp
r282304 r286139 76 76 float advanceAtCharacter; 77 77 }; 78 79 static inline bool isSoftBankEmoji(UChar32 codepoint)80 {81 return codepoint >= 0xE001 && codepoint <= 0xE537;82 }83 78 84 79 inline auto WidthIterator::applyFontTransforms(GlyphBuffer& glyphBuffer, unsigned lastGlyphCount, const Font& font, CharactersTreatedAsSpace& charactersTreatedAsSpace) -> ApplyFontTransformsResult
Note:
See TracChangeset
for help on using the changeset viewer.