From a28e51d752f211343c1cfe950d1a10929f2b5b89 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20Kol=C3=A5s?= Date: Mon, 9 Jun 2008 16:14:06 +0000 Subject: [PATCH] * 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). --- ChangeLog | 6 ++++++ clutter/cogl/common/cogl-primitives.c | 13 ++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index d18a87a..91a6e7c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-06-09 Øyvind Kolås + + * 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 * configure.ac: Clean up a bit the X11 and X extensions diff --git a/clutter/cogl/common/cogl-primitives.c b/clutter/cogl/common/cogl-primitives.c index e956413..2018c44 100644 --- a/clutter/cogl/common/cogl-primitives.c +++ b/clutter/cogl/common/cogl-primitives.c @@ -440,7 +440,6 @@ _cogl_path_bezier3_sub (CoglBezCubic *cubic) } } - void cogl_path_curve_to (ClutterFixed x1, ClutterFixed y1, @@ -471,12 +470,12 @@ cogl_path_curve_to (ClutterFixed x1, } void -cogl_rel_curve_to (ClutterFixed x1, - ClutterFixed y1, - ClutterFixed x2, - ClutterFixed y2, - ClutterFixed x3, - ClutterFixed y3) +cogl_path_rel_curve_to (ClutterFixed x1, + ClutterFixed y1, + ClutterFixed x2, + ClutterFixed y2, + ClutterFixed x3, + ClutterFixed y3) { _COGL_GET_CONTEXT (ctx, NO_RETVAL); -- 2.7.4