Title: [260133] trunk/Source/WebKit
Revision
260133
Author
[email protected]
Date
2020-04-15 09:18:49 -0700 (Wed, 15 Apr 2020)

Log Message

REGRESSION (r259610): WebGL does not work at all on iOS (was: Google Maps tiles turn black after initial load)
<rdar://problem/61794480>

Unreviewed, partial revert of r259610 because it broke Google Maps.
Stop using RunningBoard for the "Foreground" assertion because it fails to
give the target GPU access.

* UIProcess/ios/ProcessAssertionIOS.mm:
(WebKit::runningBoardNameForAssertionType):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (260132 => 260133)


--- trunk/Source/WebKit/ChangeLog	2020-04-15 16:06:21 UTC (rev 260132)
+++ trunk/Source/WebKit/ChangeLog	2020-04-15 16:18:49 UTC (rev 260133)
@@ -1,3 +1,15 @@
+2020-04-15  Chris Dumez  <[email protected]>
+
+        REGRESSION (r259610): WebGL does not work at all on iOS (was: Google Maps tiles turn black after initial load)
+        <rdar://problem/61794480>
+
+        Unreviewed, partial revert of r259610 because it broke Google Maps.
+        Stop using RunningBoard for the "Foreground" assertion because it fails to
+        give the target GPU access.
+
+        * UIProcess/ios/ProcessAssertionIOS.mm:
+        (WebKit::runningBoardNameForAssertionType):
+
 2020-04-15  Carlos Garcia Campos  <[email protected]>
 
         [GTK4] Fix use of gtk init functions

Modified: trunk/Source/WebKit/UIProcess/ios/ProcessAssertionIOS.mm (260132 => 260133)


--- trunk/Source/WebKit/UIProcess/ios/ProcessAssertionIOS.mm	2020-04-15 16:06:21 UTC (rev 260132)
+++ trunk/Source/WebKit/UIProcess/ios/ProcessAssertionIOS.mm	2020-04-15 16:18:49 UTC (rev 260133)
@@ -300,7 +300,7 @@
     case ProcessAssertionType::UnboundedNetworking:
         return @"UnboundedNetworking";
     case ProcessAssertionType::Foreground:
-        return @"Foreground";
+        return nil; // Not using RunningBoard until <rdar://problem/61830390> is fixed.
     case ProcessAssertionType::DependentProcessLink:
         return @"DependentProcessLink";
     case ProcessAssertionType::MediaPlayback:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to