summaryrefslogtreecommitdiff
path: root/src/cairo-clip-private.h
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-06-06 16:54:03 -0700
committerCarl Worth <cworth@cworth.org>2006-06-06 16:54:03 -0700
commit746f66c3fce6de39ac9afa7be8bcf8f74c750e85 (patch)
treeddbb7133c6ca2a0d4e193bacb353bd40f2dc13ab /src/cairo-clip-private.h
parent5570bf0a9e99019ac24b2b856455afcf360c14fc (diff)
downloadcairo-746f66c3fce6de39ac9afa7be8bcf8f74c750e85.tar.gz
Fix bogus cairo_rectangle_fixed_t to be cairo_rectangle_int16_t.
This rectangle has regular integer values, not fixed-point values. So the old name was horribly wrong and misleading, (and yes I think it was even I that had suggested it).
Diffstat (limited to 'src/cairo-clip-private.h')
-rw-r--r--src/cairo-clip-private.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cairo-clip-private.h b/src/cairo-clip-private.h
index 91d23fbaf..b1a243ef6 100644
--- a/src/cairo-clip-private.h
+++ b/src/cairo-clip-private.h
@@ -61,7 +61,7 @@ struct _cairo_clip {
* clip paths
*/
cairo_surface_t *surface;
- cairo_rectangle_fixed_t surface_rect;
+ cairo_rectangle_int16_t surface_rect;
/*
* Surface clip serial number to store
* in the surface when this clip is set
@@ -105,7 +105,7 @@ _cairo_clip_clip (cairo_clip_t *clip,
cairo_private cairo_status_t
_cairo_clip_intersect_to_rectangle (cairo_clip_t *clip,
- cairo_rectangle_fixed_t *rectangle);
+ cairo_rectangle_int16_t *rectangle);
cairo_private cairo_status_t
_cairo_clip_intersect_to_region (cairo_clip_t *clip,
@@ -117,7 +117,7 @@ _cairo_clip_combine_to_surface (cairo_clip_t *clip,
cairo_surface_t *dst,
int dst_x,
int dst_y,
- const cairo_rectangle_fixed_t *extents);
+ const cairo_rectangle_int16_t *extents);
cairo_private void
_cairo_clip_translate (cairo_clip_t *clip,