* clutter/cogl/common/cogl-primitives.c (cogl_path_rel_curve_to):

Fixed a typo in the second parameter which meant the curve was
	drawn incorrectly.
This commit is contained in:
Neil Roberts 2008-07-14 19:22:17 +00:00
parent 5972e9db45
commit 0064738678

View File

@ -497,7 +497,7 @@ cogl_path_rel_curve_to (ClutterFixed x1,
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
cogl_path_curve_to (ctx->path_pen.x + x1,
ctx->path_pen.y + y2,
ctx->path_pen.y + y1,
ctx->path_pen.x + x2,
ctx->path_pen.y + y2,
ctx->path_pen.x + x3,