Title: [87884] trunk/Source/WebCore
Revision
87884
Author
[email protected]
Date
2011-06-02 01:48:01 -0700 (Thu, 02 Jun 2011)

Log Message

2011-06-02  Piroska András  <[email protected]>

        Rubber-stamped by Gabor Loki.

        Trivial buildfix for the ParallelJobs part of FEConvolveMatrix.

        * platform/graphics/filters/FEConvolveMatrix.cpp:
        (WebCore::FEConvolveMatrix::apply): Rename variable i to job

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (87883 => 87884)


--- trunk/Source/WebCore/ChangeLog	2011-06-02 08:12:04 UTC (rev 87883)
+++ trunk/Source/WebCore/ChangeLog	2011-06-02 08:48:01 UTC (rev 87884)
@@ -1,3 +1,12 @@
+2011-06-02  Piroska András  <[email protected]>
+
+        Rubber-stamped by Gabor Loki.
+
+        Trivial buildfix for the ParallelJobs part of FEConvolveMatrix.
+
+        * platform/graphics/filters/FEConvolveMatrix.cpp:
+        (WebCore::FEConvolveMatrix::apply): Rename variable i to job
+
 2011-06-02  Yuta Kitamura  <[email protected]>
 
         Reviewed by Kent Tamura.

Modified: trunk/Source/WebCore/platform/graphics/filters/FEConvolveMatrix.cpp (87883 => 87884)


--- trunk/Source/WebCore/platform/graphics/filters/FEConvolveMatrix.cpp	2011-06-02 08:12:04 UTC (rev 87883)
+++ trunk/Source/WebCore/platform/graphics/filters/FEConvolveMatrix.cpp	2011-06-02 08:48:01 UTC (rev 87884)
@@ -455,7 +455,7 @@
                 param.clipRight = clipRight;
                 param.clipBottom = clipBottom;
                 param.yStart = startY;
-                if (i < numOfThreads - 1) {
+                if (job < numOfThreads - 1) {
                     startY += heightPerThread;
                     param.yEnd = startY - 1;
                 } else
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to