Title: [212836] branches/safari-603.1.30.4-branch/Source/WebCore
Revision
212836
Author
matthew_han...@apple.com
Date
2017-02-22 09:52:54 -0800 (Wed, 22 Feb 2017)

Log Message

Merge r212730. rdar://problem/30515072

Modified Paths

Diff

Modified: branches/safari-603.1.30.4-branch/Source/WebCore/ChangeLog (212835 => 212836)


--- branches/safari-603.1.30.4-branch/Source/WebCore/ChangeLog	2017-02-22 17:51:40 UTC (rev 212835)
+++ branches/safari-603.1.30.4-branch/Source/WebCore/ChangeLog	2017-02-22 17:52:54 UTC (rev 212836)
@@ -1,3 +1,21 @@
+2017-02-22  Matthew Hanson  <matthew_han...@apple.com>
+
+        Merge r212730. rdar://problem/30515072
+
+    2017-02-21  Per Arne Vollan  <pvol...@apple.com>
+
+            [Win] WebView is not painting in accelerated compositing mode.
+            https://bugs.webkit.org/show_bug.cgi?id=168654
+
+            Reviewed by Brent Fulgham.
+
+            Initializing the uncommitted layer change flags to CoverageRectChanged in GraphicsLayerCA,
+            stops WebView painting in accelerated mode.
+
+            Covered by existing tests.
+
+            * platform/graphics/ca/GraphicsLayerCA.h:
+
 2017-02-20  Matthew Hanson  <matthew_han...@apple.com>
 
         Rollout r212601. rdar://problem/30339638

Modified: branches/safari-603.1.30.4-branch/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.h (212835 => 212836)


--- branches/safari-603.1.30.4-branch/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.h	2017-02-22 17:51:40 UTC (rev 212835)
+++ branches/safari-603.1.30.4-branch/Source/WebCore/platform/graphics/ca/GraphicsLayerCA.h	2017-02-22 17:52:54 UTC (rev 212836)
@@ -587,7 +587,13 @@
 
     FloatSize m_pixelAlignmentOffset;
 
+#if PLATFORM(WIN)
+    // FIXME: when initializing m_uncommittedChanges to a non-zero value, nothing is painted on Windows, see https://bugs.webkit.org/show_bug.cgi?id=168666.
+    LayerChangeFlags m_uncommittedChanges { 0 };
+#else
     LayerChangeFlags m_uncommittedChanges { CoverageRectChanged };
+#endif
+
     bool m_isCommittingChanges { false };
 };
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to