summaryrefslogtreecommitdiff
path: root/src/cairo-path-fixed-private.h
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2009-07-29 15:36:25 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2009-07-29 16:17:12 +0100
commit71f5649846aa8e9e2178e7caf69ab47554f86c4d (patch)
treef7ce4ebf849318bef5df27103224858a4dcb205c /src/cairo-path-fixed-private.h
parentacfcf4a31b3370ca7bbdd522fad9ddc483df3472 (diff)
downloadcairo-71f5649846aa8e9e2178e7caf69ab47554f86c4d.tar.gz
[path] Fix iter to handle circular list of buffers
When switching the path over to use the circularly linked list, 73f801, I missed updating the path iterator.
Diffstat (limited to 'src/cairo-path-fixed-private.h')
-rw-r--r--src/cairo-path-fixed-private.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cairo-path-fixed-private.h b/src/cairo-path-fixed-private.h
index 1ef7cddaf..f25a45e26 100644
--- a/src/cairo-path-fixed-private.h
+++ b/src/cairo-path-fixed-private.h
@@ -112,6 +112,7 @@ _cairo_path_fixed_equal (const cairo_path_fixed_t *a,
const cairo_path_fixed_t *b);
typedef struct _cairo_path_fixed_iter {
+ const cairo_path_buf_t *first;
const cairo_path_buf_t *buf;
unsigned int n_op;
unsigned int n_point;