[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 12:24:48 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit ad02da3ec65ab346cd39888f9b318b5204408388
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Aug 22 12:12:33 2010 +0000

    2010-08-22  Andreas Kling  <andreas.kling at nokia.com>
    
            Reviewed by Ariya Hidayat.
    
            [Qt] TransparencyLayer: Always use anti-aliasing and smooth pixmap transform
            https://bugs.webkit.org/show_bug.cgi?id=44394
    
            * platform/graphics/qt/TransparencyLayer.h:
            (WebCore::TransparencyLayer::TransparencyLayer): Set the Antialiasing
            and SmoothPixmapTransforms render hints for all TransparencyLayers.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65784 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 825e72a..b7976bd 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,17 @@
 
         Reviewed by Ariya Hidayat.
 
+        [Qt] TransparencyLayer: Always use anti-aliasing and smooth pixmap transform
+        https://bugs.webkit.org/show_bug.cgi?id=44394
+
+        * platform/graphics/qt/TransparencyLayer.h:
+        (WebCore::TransparencyLayer::TransparencyLayer): Set the Antialiasing
+        and SmoothPixmapTransforms render hints for all TransparencyLayers.
+
+2010-08-22  Andreas Kling  <andreas.kling at nokia.com>
+
+        Reviewed by Ariya Hidayat.
+
         [Qt] Gradient: Support inner radius larger than outer radius
         https://bugs.webkit.org/show_bug.cgi?id=44392
 
diff --git a/WebCore/platform/graphics/qt/TransparencyLayer.h b/WebCore/platform/graphics/qt/TransparencyLayer.h
index 0d9c121..1a614ac 100644
--- a/WebCore/platform/graphics/qt/TransparencyLayer.h
+++ b/WebCore/platform/graphics/qt/TransparencyLayer.h
@@ -52,7 +52,7 @@ struct TransparencyLayer : FastAllocBase {
         offset = rect.topLeft();
         pixmap.fill(Qt::transparent);
         painter.begin(&pixmap);
-        painter.setRenderHint(QPainter::Antialiasing, p->testRenderHint(QPainter::Antialiasing));
+        painter.setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform);
         painter.translate(-offset);
         painter.setPen(p->pen());
         painter.setBrush(p->brush());

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list