Changeset 187498 in webkit


Ignore:
Timestamp:
Jul 28, 2015, 12:14:05 PM (10 years ago)
Author:
Simon Fraser
Message:

Fix builds using PathCairo.

  • platform/graphics/cairo/PathCairo.cpp:

(WebCore::Path::apply):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r187496 r187498  
     12015-07-28  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Fix builds using PathCairo.
     4
     5        * platform/graphics/cairo/PathCairo.cpp:
     6        (WebCore::Path::apply):
     7
    182015-07-28  Joseph Pecoraro  <pecoraro@apple.com>
    29
  • trunk/Source/WebCore/platform/graphics/cairo/PathCairo.cpp

    r183265 r187498  
    409409            pelement.type = PathElementMoveToPoint;
    410410            pelement.points[0] = FloatPoint(data[1].point.x,data[1].point.y);
    411             function(info, &pelement);
     411            function(info, pelement);
    412412            break;
    413413        case CAIRO_PATH_LINE_TO:
    414414            pelement.type = PathElementAddLineToPoint;
    415415            pelement.points[0] = FloatPoint(data[1].point.x,data[1].point.y);
    416             function(info, &pelement);
     416            function(info, pelement);
    417417            break;
    418418        case CAIRO_PATH_CURVE_TO:
     
    421421            pelement.points[1] = FloatPoint(data[2].point.x,data[2].point.y);
    422422            pelement.points[2] = FloatPoint(data[3].point.x,data[3].point.y);
    423             function(info, &pelement);
     423            function(info, pelement);
    424424            break;
    425425        case CAIRO_PATH_CLOSE_PATH:
    426426            pelement.type = PathElementCloseSubpath;
    427             function(info, &pelement);
     427            function(info, pelement);
    428428            break;
    429429        }
Note: See TracChangeset for help on using the changeset viewer.