* 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 d3e2b27cff
commit 9fbdee463d
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-07-14 Neil Roberts <neil@o-hand.com>
* 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.
2008-07-14 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter.h: Include missing installed files.

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,