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

zherczeg at webkit.org zherczeg at webkit.org
Wed Dec 22 18:48:00 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 966046f2323f01b88ce5a4d857a6f200145a1783
Author: zherczeg at webkit.org <zherczeg at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Dec 18 02:32:24 2010 +0000

    2010-12-17  Zoltan Herczeg  <zherczeg at webkit.org>
    
            Reviewed by Dirk Schulze.
    
            Improve 'arithmetic' operator on feComposite
            https://bugs.webkit.org/show_bug.cgi?id=51105
    
            Fixing style errors and bug description for r74177.
    
            * platform/graphics/filters/FEComposite.cpp:
            (WebCore::arithmetic):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74310 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d022434..dea826d 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-12-17  Zoltan Herczeg  <zherczeg at webkit.org>
+
+        Reviewed by Dirk Schulze.
+
+        Improve 'arithmetic' operator on feComposite
+        https://bugs.webkit.org/show_bug.cgi?id=51105
+
+        Fixing style errors and bug description for r74177.
+
+        * platform/graphics/filters/FEComposite.cpp:
+        (WebCore::arithmetic):
+
 2010-12-17  Dan Bernstein  <mitz at apple.com>
 
         Rubber-stamped by Mark Rowe.
diff --git a/WebCore/platform/graphics/filters/FEComposite.cpp b/WebCore/platform/graphics/filters/FEComposite.cpp
index f2d98f4..5ecd69b 100644
--- a/WebCore/platform/graphics/filters/FEComposite.cpp
+++ b/WebCore/platform/graphics/filters/FEComposite.cpp
@@ -142,19 +142,19 @@ inline void arithmetic(ByteArray* srcPixelArrayA, ByteArray* srcPixelArrayB,
 
     if (!k4) {
         if (!k1) {
-            computeArithmeticPixels<0,1,1,0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
+            computeArithmeticPixels<0, 1, 1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
             return;
         }
 
-        computeArithmeticPixels<1,1,1,0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
+        computeArithmeticPixels<1, 1, 1, 0>(source, destination, pixelArrayLength, k1, k2, k3, k4);
         return;
     }
 
     if (!k1) {
-        computeArithmeticPixels<0,1,1,1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
+        computeArithmeticPixels<0, 1, 1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
         return;
     }
-    computeArithmeticPixels<1,1,1,1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
+    computeArithmeticPixels<1, 1, 1, 1>(source, destination, pixelArrayLength, k1, k2, k3, k4);
 }
 
 void FEComposite::determineAbsolutePaintRect()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list