summaryrefslogtreecommitdiff
path: root/src/cairo-path-fixed-private.h
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2005-03-23 14:36:29 +0000
committerCarl Worth <cworth@cworth.org>2005-03-23 14:36:29 +0000
commit410e3ae8f20176f1a18b5394dfa753a277221a7f (patch)
treedeb4ba9d267b937dab9e20984177a26501b33824 /src/cairo-path-fixed-private.h
parent5170c1f4d2e554ad03450513046ff8c27150f6ee (diff)
downloadcairo-410e3ae8f20176f1a18b5394dfa753a277221a7f.tar.gz
Clean up names of cairo_path internals.
Diffstat (limited to 'src/cairo-path-fixed-private.h')
-rw-r--r--src/cairo-path-fixed-private.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/cairo-path-fixed-private.h b/src/cairo-path-fixed-private.h
index b863597a2..e8e0df194 100644
--- a/src/cairo-path-fixed-private.h
+++ b/src/cairo-path-fixed-private.h
@@ -43,28 +43,28 @@ typedef enum cairo_path_op {
CAIRO_PATH_OP_CLOSE_PATH = 3
} __attribute__ ((packed)) cairo_path_op_t; /* Don't want 32 bits if we can avoid it. */
-#define CAIRO_PATH_BUF_SZ 64
+#define CAIRO_PATH_BUF_SIZE 64
typedef struct _cairo_path_op_buf {
int num_ops;
- cairo_path_op_t op[CAIRO_PATH_BUF_SZ];
+ cairo_path_op_t op[CAIRO_PATH_BUF_SIZE];
struct _cairo_path_op_buf *next, *prev;
} cairo_path_op_buf_t;
typedef struct _cairo_path_arg_buf {
int num_points;
- cairo_point_t points[CAIRO_PATH_BUF_SZ];
+ cairo_point_t points[CAIRO_PATH_BUF_SIZE];
struct _cairo_path_arg_buf *next, *prev;
} cairo_path_arg_buf_t;
struct _cairo_path_fixed {
- cairo_path_op_buf_t *op_head;
- cairo_path_op_buf_t *op_tail;
+ cairo_path_op_buf_t *op_buf_head;
+ cairo_path_op_buf_t *op_buf_tail;
- cairo_path_arg_buf_t *arg_head;
- cairo_path_arg_buf_t *arg_tail;
+ cairo_path_arg_buf_t *arg_buf_head;
+ cairo_path_arg_buf_t *arg_buf_tail;
cairo_point_t last_move_point;
cairo_point_t current_point;