mirror of
https://github.com/brl/mutter.git
synced 2024-12-29 14:22:13 +00:00
* clutter/cogl/common/cogl-primitives.c: (cogl_path_rel_curve_to):
fixed naming of implementation of cogl_path_rel_curve_to (it was called just cogl_rel_curve_to).
This commit is contained in:
parent
40b62c7b67
commit
a28e51d752
@ -1,3 +1,9 @@
|
|||||||
|
2008-06-09 Øyvind Kolås <pippin@o-hand.com>
|
||||||
|
|
||||||
|
* clutter/cogl/common/cogl-primitives.c: (cogl_path_rel_curve_to):
|
||||||
|
fixed naming of implementation of cogl_path_rel_curve_to (it was
|
||||||
|
called just cogl_rel_curve_to).
|
||||||
|
|
||||||
2008-06-09 Emmanuele Bassi <ebassi@openedhand.com>
|
2008-06-09 Emmanuele Bassi <ebassi@openedhand.com>
|
||||||
|
|
||||||
* configure.ac: Clean up a bit the X11 and X extensions
|
* configure.ac: Clean up a bit the X11 and X extensions
|
||||||
|
@ -440,7 +440,6 @@ _cogl_path_bezier3_sub (CoglBezCubic *cubic)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
cogl_path_curve_to (ClutterFixed x1,
|
cogl_path_curve_to (ClutterFixed x1,
|
||||||
ClutterFixed y1,
|
ClutterFixed y1,
|
||||||
@ -471,12 +470,12 @@ cogl_path_curve_to (ClutterFixed x1,
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
cogl_rel_curve_to (ClutterFixed x1,
|
cogl_path_rel_curve_to (ClutterFixed x1,
|
||||||
ClutterFixed y1,
|
ClutterFixed y1,
|
||||||
ClutterFixed x2,
|
ClutterFixed x2,
|
||||||
ClutterFixed y2,
|
ClutterFixed y2,
|
||||||
ClutterFixed x3,
|
ClutterFixed x3,
|
||||||
ClutterFixed y3)
|
ClutterFixed y3)
|
||||||
{
|
{
|
||||||
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user