Title: [210710] branches/safari-603-branch/Source/WebCore
Revision
210710
Author
[email protected]
Date
2017-01-12 22:10:31 -0800 (Thu, 12 Jan 2017)

Log Message

Merge r210663. rdar://problem/29916484

Modified Paths

Diff

Modified: branches/safari-603-branch/Source/WebCore/ChangeLog (210709 => 210710)


--- branches/safari-603-branch/Source/WebCore/ChangeLog	2017-01-13 06:10:28 UTC (rev 210709)
+++ branches/safari-603-branch/Source/WebCore/ChangeLog	2017-01-13 06:10:31 UTC (rev 210710)
@@ -1,5 +1,21 @@
 2017-01-12  Matthew Hanson  <[email protected]>
 
+        Merge r210663. rdar://problem/29916484
+
+    2017-01-12  Said Abou-Hallawa  <[email protected]>
+
+            [iOS][WK1] Fix initialization of CADisplayLink::preferredFramesPerSecond
+            https://bugs.webkit.org/show_bug.cgi?id=166956
+
+            Reviewed by Tim Horton.
+
+            Set this option to 60fps instead of leaving set to the default.
+
+            * platform/graphics/ios/DisplayRefreshMonitorIOS.mm:
+            (-[WebDisplayLinkHandler initWithMonitor:]):
+
+2017-01-12  Matthew Hanson  <[email protected]>
+
         Merge r210616. rdar://problem/29971105
 
     2017-01-11  Youenn Fablet  <[email protected]>

Modified: branches/safari-603-branch/Source/WebCore/platform/graphics/ios/DisplayRefreshMonitorIOS.mm (210709 => 210710)


--- branches/safari-603-branch/Source/WebCore/platform/graphics/ios/DisplayRefreshMonitorIOS.mm	2017-01-13 06:10:28 UTC (rev 210709)
+++ branches/safari-603-branch/Source/WebCore/platform/graphics/ios/DisplayRefreshMonitorIOS.mm	2017-01-13 06:10:31 UTC (rev 210710)
@@ -57,6 +57,7 @@
         // Note that CADisplayLink retains its target (self), so a call to -invalidate is needed on teardown.
         m_displayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(handleDisplayLink:)];
         [m_displayLink addToRunLoop:WebThreadNSRunLoop() forMode:NSDefaultRunLoopMode];
+        m_displayLink.preferredFramesPerSecond = 60;
     }
     return self;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to