Title: [158161] branches/safari-537.73-branch/Source/WebCore
Revision
158161
Author
[email protected]
Date
2013-10-28 19:45:26 -0700 (Mon, 28 Oct 2013)

Log Message

Merged r155664.  <rdar://problem/15168243>

Modified Paths

Diff

Modified: branches/safari-537.73-branch/Source/WebCore/ChangeLog (158160 => 158161)


--- branches/safari-537.73-branch/Source/WebCore/ChangeLog	2013-10-29 02:45:08 UTC (rev 158160)
+++ branches/safari-537.73-branch/Source/WebCore/ChangeLog	2013-10-29 02:45:26 UTC (rev 158161)
@@ -1,5 +1,32 @@
 2013-10-28  Lucas Forschler  <[email protected]>
 
+        Merge r155664
+
+    2013-09-12  Tim Horton  <[email protected]>
+
+            Image doesn't always repaint at high quality in all tiles after a live resize
+            https://bugs.webkit.org/show_bug.cgi?id=121244
+
+            Reviewed by Darin Adler.
+
+            Currently, ImageQualityController removes an image from its low-quality-images
+            list from inside shouldPaintAtLowQuality, if this is the first paint outside
+            of a live resize, but does not force the renderer to repaint in its entirety.
+
+            However, there's no guarantee we've invalidated the whole renderer, so this can
+            leave some parts of the image painted in low-quality.
+
+            This just removes a short-circuit, instead using the ordinary high-quality-repaint
+            timer to ensure that the entire renderer is repainted.
+
+            No new test; all attempts have failed, as this depends on tiled drawing
+            and a live resize occurring.
+
+            * rendering/ImageQualityController.cpp:
+            (WebCore::ImageQualityController::shouldPaintAtLowQuality):
+
+2013-10-28  Lucas Forschler  <[email protected]>
+
     Rollout 158067.
 
 2013-10-25  Lucas Forschler  <[email protected]>

Modified: branches/safari-537.73-branch/Source/WebCore/rendering/RenderBoxModelObject.cpp (158160 => 158161)


--- branches/safari-537.73-branch/Source/WebCore/rendering/RenderBoxModelObject.cpp	2013-10-29 02:45:08 UTC (rev 158160)
+++ branches/safari-537.73-branch/Source/WebCore/rendering/RenderBoxModelObject.cpp	2013-10-29 02:45:26 UTC (rev 158161)
@@ -198,11 +198,8 @@
             m_liveResizeOptimizationIsActive = true;
             return true;
         }
-        if (m_liveResizeOptimizationIsActive) {
-            // Live resize has ended, paint in HQ and remove this object from the list.
-            removeLayer(object, innerMap, layer);
+        if (m_liveResizeOptimizationIsActive)
             return false;
-        }
     }
 
     const AffineTransform& currentTransform = context->getCTM();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to