[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

andreas.kling at nokia.com andreas.kling at nokia.com
Wed Dec 22 13:31:46 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 65c9e69b4ca97e27d2b35996a4c0cc0e75127da9
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Sep 18 15:23:47 2010 +0000

    2010-09-18  Andreas Kling  <andreas.kling at nokia.com>
    
            Reviewed by Simon Hausmann.
    
            [Qt] Don't copy clip path to TransparencyLayer
            https://bugs.webkit.org/show_bug.cgi?id=45965
    
            We don't need to copy the GC's clip path to the TransparencyLayer since it will
            clip anyway when ending the layer.
    
            * platform/graphics/qt/TransparencyLayer.h:
            (WebCore::TransparencyLayer::TransparencyLayer):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67780 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 869b3c4..08a0b81 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-09-18  Andreas Kling  <andreas.kling at nokia.com>
+
+        Reviewed by Simon Hausmann.
+
+        [Qt] Don't copy clip path to TransparencyLayer
+        https://bugs.webkit.org/show_bug.cgi?id=45965
+
+        We don't need to copy the GC's clip path to the TransparencyLayer since it will
+        clip anyway when ending the layer.
+
+        * platform/graphics/qt/TransparencyLayer.h:
+        (WebCore::TransparencyLayer::TransparencyLayer):
+
 2010-09-18  Patrick Gansterer  <paroga at paroga.com>
 
         Unreviewed.
diff --git a/WebCore/platform/graphics/qt/TransparencyLayer.h b/WebCore/platform/graphics/qt/TransparencyLayer.h
index 73ad9c6..6bdfb39 100644
--- a/WebCore/platform/graphics/qt/TransparencyLayer.h
+++ b/WebCore/platform/graphics/qt/TransparencyLayer.h
@@ -61,8 +61,6 @@ struct TransparencyLayer : FastAllocBase {
         painter.setFont(p->font());
         if (painter.paintEngine()->hasFeature(QPaintEngine::PorterDuff))
             painter.setCompositionMode(p->compositionMode());
-        if (p->hasClipping())
-            painter.setClipPath(p->clipPath());
     }
 
     TransparencyLayer()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list