Title: [286139] trunk/Source/WebCore
Revision
286139
Author
[email protected]
Date
2021-11-23 17:25:24 -0800 (Tue, 23 Nov 2021)

Log 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.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (286138 => 286139)


--- trunk/Source/WebCore/ChangeLog	2021-11-23 21:05:08 UTC (rev 286138)
+++ trunk/Source/WebCore/ChangeLog	2021-11-24 01:25:24 UTC (rev 286139)
@@ -1,3 +1,17 @@
+2021-11-23  Myles C. Maxfield  <[email protected]>
+
+        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.
+
 2021-11-23  Don Olmstead  <[email protected]>
 
         Non-unified build fixes, mid November 2021 edition

Modified: trunk/Source/WebCore/platform/graphics/WidthIterator.cpp (286138 => 286139)


--- trunk/Source/WebCore/platform/graphics/WidthIterator.cpp	2021-11-23 21:05:08 UTC (rev 286138)
+++ trunk/Source/WebCore/platform/graphics/WidthIterator.cpp	2021-11-24 01:25:24 UTC (rev 286139)
@@ -76,11 +76,6 @@
     float advanceAtCharacter;
 };
 
-static inline bool isSoftBankEmoji(UChar32 codepoint)
-{
-    return codepoint >= 0xE001 && codepoint <= 0xE537;
-}
-
 inline auto WidthIterator::applyFontTransforms(GlyphBuffer& glyphBuffer, unsigned lastGlyphCount, const Font& font, CharactersTreatedAsSpace& charactersTreatedAsSpace) -> ApplyFontTransformsResult
 {
     auto glyphBufferSize = glyphBuffer.size();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to