mirror of
https://github.com/brl/mutter.git
synced 2024-11-10 16:16:20 -05:00
* 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:
parent
d3e2b27cff
commit
9fbdee463d
@ -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.
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user