Title: [187498] trunk/Source/WebCore
Revision
187498
Author
[email protected]
Date
2015-07-28 12:14:05 -0700 (Tue, 28 Jul 2015)

Log Message

Fix builds using PathCairo.

* platform/graphics/cairo/PathCairo.cpp:
(WebCore::Path::apply):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (187497 => 187498)


--- trunk/Source/WebCore/ChangeLog	2015-07-28 18:51:27 UTC (rev 187497)
+++ trunk/Source/WebCore/ChangeLog	2015-07-28 19:14:05 UTC (rev 187498)
@@ -1,3 +1,10 @@
+2015-07-28  Simon Fraser  <[email protected]>
+
+        Fix builds using PathCairo.
+
+        * platform/graphics/cairo/PathCairo.cpp:
+        (WebCore::Path::apply):
+
 2015-07-28  Joseph Pecoraro  <[email protected]>
 
         Web Inspector: Show Pseudo Elements in DOM Tree

Modified: trunk/Source/WebCore/platform/graphics/cairo/PathCairo.cpp (187497 => 187498)


--- trunk/Source/WebCore/platform/graphics/cairo/PathCairo.cpp	2015-07-28 18:51:27 UTC (rev 187497)
+++ trunk/Source/WebCore/platform/graphics/cairo/PathCairo.cpp	2015-07-28 19:14:05 UTC (rev 187498)
@@ -408,23 +408,23 @@
         case CAIRO_PATH_MOVE_TO:
             pelement.type = PathElementMoveToPoint;
             pelement.points[0] = FloatPoint(data[1].point.x,data[1].point.y);
-            function(info, &pelement);
+            function(info, pelement);
             break;
         case CAIRO_PATH_LINE_TO:
             pelement.type = PathElementAddLineToPoint;
             pelement.points[0] = FloatPoint(data[1].point.x,data[1].point.y);
-            function(info, &pelement);
+            function(info, pelement);
             break;
         case CAIRO_PATH_CURVE_TO:
             pelement.type = PathElementAddCurveToPoint;
             pelement.points[0] = FloatPoint(data[1].point.x,data[1].point.y);
             pelement.points[1] = FloatPoint(data[2].point.x,data[2].point.y);
             pelement.points[2] = FloatPoint(data[3].point.x,data[3].point.y);
-            function(info, &pelement);
+            function(info, pelement);
             break;
         case CAIRO_PATH_CLOSE_PATH:
             pelement.type = PathElementCloseSubpath;
-            function(info, &pelement);
+            function(info, pelement);
             break;
         }
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to