efl: change efl_gfx_shape_cubic_to() api signature to follow other API (cairo and freetype).

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Subhransu Mohanty 2015-11-23 10:43:46 +09:00 committed by Cedric BAIL
parent f5f5b56404
commit cd31e7e9bd
1 changed files with 2 additions and 2 deletions

View File

@ -370,9 +370,9 @@ void _arcto(Efl_VG *obj, int x, int y, int width, int height, int startAngle, in
for (i = 0; i < point_count; i += 3)
{
evas_vg_shape_shape_append_cubic_to(obj,
pts[i+2].x, pts[i+2].y,
pts[i].x, pts[i].y,
pts[i+1].x, pts[i+1].y);
pts[i+1].x, pts[i+1].y,
pts[i+2].x, pts[i+2].y);
}
evas_vg_shape_shape_append_close(obj);
}