[gegl/soc-2011-warp] GeglPath: fix ensure_tail that didn't work if priv->tail == NULL + fix wrong renaming
- From: Michael Murà <mmure src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl/soc-2011-warp] GeglPath: fix ensure_tail that didn't work if priv->tail == NULL + fix wrong renaming
- Date: Tue, 28 Jun 2011 17:42:33 +0000 (UTC)
commit c8e6a95b222d513e953a85b4de838cdd40b499ae
Author: Michael Murà <batolettre gmail com>
Date: Tue Jun 28 19:40:48 2011 +0200
GeglPath: fix ensure_tail that didn't work if priv->tail == NULL
+ fix wrong renaming
gegl/property-types/gegl-path.c | 28 ++++++++--------------------
1 files changed, 8 insertions(+), 20 deletions(-)
---
diff --git a/gegl/property-types/gegl-path.c b/gegl/property-types/gegl-path.c
index d38cb17..60def55 100644
--- a/gegl/property-types/gegl-path.c
+++ b/gegl/property-types/gegl-path.c
@@ -108,7 +108,7 @@ static const gchar * parse_float_pair (const gchar *p,
gdouble *y);
static void gegl_path_emit_changed (GeglPath *self,
const GeglRectangle *bounds);
-static void ensure_flattened (GeglPath *path);
+static void ensure_flattened (GeglPath *vector);
static GeglPathList * ensure_tail (GeglPathPrivate *priv);
static GeglPathList * flatten_copy (GeglMatrix3 *matrix,
@@ -1077,13 +1077,13 @@ gegl_path_emit_changed (GeglPath *self,
/**
* ensure_flattened:
- * @path: a #GeglPath
+ * @vector: a #GeglPath
*
* Check if the polyline version of the curse is computed and up to date,
* and compute it if needed.
*/
static void
-ensure_flattened (GeglPath *path)
+ensure_flattened (GeglPath *vector)
{
GeglPathPrivate *priv = GEGL_PATH_GET_PRIVATE (vector);
gint i;
@@ -1124,25 +1124,13 @@ ensure_flattened (GeglPath *path)
static GeglPathList *
ensure_tail (GeglPathPrivate *priv)
{
- GeglPathList *tail_attempt = NULL;
GeglPathList *tail;
- if (priv->tail)
- {
- for (tail_attempt=priv->tail;
- tail_attempt && tail_attempt->next;
- tail_attempt=tail_attempt->next);
- return tail_attempt; /* comment his out, and
- let failures be shown by
- the assert below,.. */
- }
- for (tail=priv->tail;
- tail && tail->next;
- tail=tail->next);
- if (tail_attempt)
- {
- g_assert (tail_attempt == tail);
- }
+ tail = priv->tail ? priv->tail : priv->path;
+
+ while (tail && tail->next)
+ tail=tail->next;
+
priv->tail = tail;
return tail;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]