[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 11:20:19 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit e2bb2efdd98d5ce398b24be0c92a4ff915f7a51f
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jul 20 02:03:54 2010 +0000

    2010-07-19  Andreas Kling  <andreas.kling at nokia.com>
    
            Reviewed by Kenneth Rohde Christiansen.
    
            [Qt] Don't unnecessarily copy QPainterPath in fillPath() and strokePath()
            https://bugs.webkit.org/show_bug.cgi?id=42513
    
            Avoid making unnecessary deep-copies of QPainterPaths that will
            be discarded after use.
    
            * platform/graphics/qt/GraphicsContextQt.cpp:
            (WebCore::GraphicsContext::fillPath):
            (WebCore::GraphicsContext::strokePath):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63706 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 7ce7d30..8b782ab 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,17 @@
+2010-07-19  Andreas Kling  <andreas.kling at nokia.com>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        [Qt] Don't unnecessarily copy QPainterPath in fillPath() and strokePath()
+        https://bugs.webkit.org/show_bug.cgi?id=42513
+
+        Avoid making unnecessary deep-copies of QPainterPaths that will
+        be discarded after use.
+
+        * platform/graphics/qt/GraphicsContextQt.cpp:
+        (WebCore::GraphicsContext::fillPath):
+        (WebCore::GraphicsContext::strokePath):
+
 2010-07-19  Kenneth Russell  <kbr at google.com>
 
         Reviewed by Nate Chapin.
diff --git a/WebCore/platform/graphics/qt/GraphicsContextQt.cpp b/WebCore/platform/graphics/qt/GraphicsContextQt.cpp
index 45706e8..a828070 100644
--- a/WebCore/platform/graphics/qt/GraphicsContextQt.cpp
+++ b/WebCore/platform/graphics/qt/GraphicsContextQt.cpp
@@ -567,7 +567,7 @@ void GraphicsContext::fillPath()
         return;
 
     QPainter* p = m_data->p();
-    QPainterPath path = m_data->currentPath;
+    QPainterPath& path = m_data->currentPath; // Avoid detaching the QPainterPath
     path.setFillRule(toQtFillRule(fillRule()));
 
     drawFilledShadowPath(this, p, path);
@@ -591,7 +591,7 @@ void GraphicsContext::strokePath()
 
     QPainter* p = m_data->p();
     QPen pen(p->pen());
-    QPainterPath path = m_data->currentPath;
+    QPainterPath& path = m_data->currentPath; // Avoid detaching the QPainterPath
     path.setFillRule(toQtFillRule(fillRule()));
 
     FloatSize shadowSize;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list