Title: [231378] trunk/Source/WebCore
Revision
231378
Author
[email protected]
Date
2018-05-04 13:54:46 -0700 (Fri, 04 May 2018)

Log Message

Don't use GSFont* in minimal simulator mode
https://bugs.webkit.org/show_bug.cgi?id=185320
<rdar://problem/39734478>

Reviewed by Beth Dakin.

* page/cocoa/MemoryReleaseCocoa.mm:
(WebCore::platformReleaseMemory):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (231377 => 231378)


--- trunk/Source/WebCore/ChangeLog	2018-05-04 20:51:47 UTC (rev 231377)
+++ trunk/Source/WebCore/ChangeLog	2018-05-04 20:54:46 UTC (rev 231378)
@@ -1,3 +1,14 @@
+2018-05-04  Tim Horton  <[email protected]>
+
+        Don't use GSFont* in minimal simulator mode
+        https://bugs.webkit.org/show_bug.cgi?id=185320
+        <rdar://problem/39734478>
+
+        Reviewed by Beth Dakin.
+
+        * page/cocoa/MemoryReleaseCocoa.mm:
+        (WebCore::platformReleaseMemory):
+
 2018-05-04  Chris Dumez  <[email protected]>
 
         Unreviewed, rolling out r231331.

Modified: trunk/Source/WebCore/page/cocoa/MemoryReleaseCocoa.mm (231377 => 231378)


--- trunk/Source/WebCore/page/cocoa/MemoryReleaseCocoa.mm	2018-05-04 20:51:47 UTC (rev 231377)
+++ trunk/Source/WebCore/page/cocoa/MemoryReleaseCocoa.mm	2018-05-04 20:54:46 UTC (rev 231378)
@@ -42,7 +42,7 @@
 
 void platformReleaseMemory(Critical)
 {
-#if PLATFORM(IOS) && !PLATFORM(IOS_SIMULATOR)
+#if PLATFORM(IOS) && !PLATFORM(IOS_SIMULATOR) && !ENABLE(MINIMAL_SIMULATOR)
     // FIXME: Remove this call to GSFontInitialize() once <rdar://problem/32886715> is fixed.
     GSFontInitialize();
     GSFontPurgeFontCache();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to