[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 14:29:28 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 1a57051c60852390d01647065c26adac97126f30
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 11 19:50:13 2010 +0000

    2010-10-11  Andreas Kling  <kling at webkit.org>
    
            Build fix (implicit float conversion in Path.cpp)
    
            * platform/graphics/Path.cpp:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69519 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d8a6a1a..e631b80 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,9 @@
+2010-10-11  Andreas Kling  <kling at webkit.org>
+
+        Build fix (implicit float conversion in Path.cpp)
+
+        * platform/graphics/Path.cpp:
+
 2010-10-11  Girish Ramakrishnan  <girish at forwardbias.in>
 
         Reviewed by Kenneth Rohde Christiansen.
diff --git a/WebCore/platform/graphics/Path.cpp b/WebCore/platform/graphics/Path.cpp
index 0a24ab2..55760b1 100644
--- a/WebCore/platform/graphics/Path.cpp
+++ b/WebCore/platform/graphics/Path.cpp
@@ -36,7 +36,7 @@
 #include <wtf/MathExtras.h>
 
 // Approximation of control point positions on a bezier to simulate a quarter of a circle.
-static const float gCircleControlPoint = 1 - 0.552;
+static const float gCircleControlPoint = 0.448f;
 
 namespace WebCore {
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list