summaryrefslogtreecommitdiff
path: root/src/cairo-surface.c
diff options
context:
space:
mode:
authorRobert O'Callahan <rocallahan@novell.com>2006-05-04 03:43:34 -0700
committerCarl Worth <cworth@cworth.org>2006-05-04 03:43:34 -0700
commit7bcf957b4e2a986a94bbc29192f61b8c9c0067be (patch)
treea0d1bfca7af2ed39630c1b9784a706a85ea2b95a /src/cairo-surface.c
parentd71ddec8dfcfd4a8eb39edc9f34f93dc1683a62d (diff)
Rename cairo_rectangle_t to cairo_rectangle_fixed_t.
This is in preparation for a later function addition for extracting clip rectangles from a cairo_t, (which will add a public cairo_rectangle_t).
Diffstat (limited to 'src/cairo-surface.c')
-rw-r--r--src/cairo-surface.c58
1 files changed, 29 insertions, 29 deletions
diff --git a/src/cairo-surface.c b/src/cairo-surface.c
index 025f30030..341909f1f 100644
--- a/src/cairo-surface.c
+++ b/src/cairo-surface.c
@@ -714,9 +714,9 @@ _cairo_surface_release_source_image (cairo_surface_t *surface,
**/
cairo_status_t
_cairo_surface_acquire_dest_image (cairo_surface_t *surface,
- cairo_rectangle_t *interest_rect,
+ cairo_rectangle_fixed_t *interest_rect,
cairo_image_surface_t **image_out,
- cairo_rectangle_t *image_rect,
+ cairo_rectangle_fixed_t *image_rect,
void **image_extra)
{
assert (!surface->finished);
@@ -739,11 +739,11 @@ _cairo_surface_acquire_dest_image (cairo_surface_t *surface,
* resources that were allocated.
**/
void
-_cairo_surface_release_dest_image (cairo_surface_t *surface,
- cairo_rectangle_t *interest_rect,
- cairo_image_surface_t *image,
- cairo_rectangle_t *image_rect,
- void *image_extra)
+_cairo_surface_release_dest_image (cairo_surface_t *surface,
+ cairo_rectangle_fixed_t *interest_rect,
+ cairo_image_surface_t *image,
+ cairo_rectangle_fixed_t *image_rect,
+ void *image_extra)
{
assert (!surface->finished);
@@ -915,7 +915,7 @@ _cairo_surface_fill_rectangle (cairo_surface_t *surface,
int width,
int height)
{
- cairo_rectangle_t rect;
+ cairo_rectangle_fixed_t rect;
assert (! surface->is_snapshot);
@@ -954,7 +954,7 @@ _cairo_surface_fill_region (cairo_surface_t *surface,
{
int num_rects = pixman_region_num_rects (region);
pixman_box16_t *boxes = pixman_region_rects (region);
- cairo_rectangle_t *rects;
+ cairo_rectangle_fixed_t *rects;
cairo_status_t status;
int i;
@@ -1000,10 +1000,10 @@ _cairo_surface_fill_region (cairo_surface_t *surface,
**/
cairo_status_t
_cairo_surface_fill_rectangles (cairo_surface_t *surface,
- cairo_operator_t op,
+ cairo_operator_t op,
const cairo_color_t *color,
- cairo_rectangle_t *rects,
- int num_rects)
+ cairo_rectangle_fixed_t *rects,
+ int num_rects)
{
cairo_int_status_t status;
@@ -1529,8 +1529,8 @@ _cairo_surface_set_clip (cairo_surface_t *surface, cairo_clip_t *clip)
*/
cairo_status_t
-_cairo_surface_get_extents (cairo_surface_t *surface,
- cairo_rectangle_t *rectangle)
+_cairo_surface_get_extents (cairo_surface_t *surface,
+ cairo_rectangle_fixed_t *rectangle)
{
cairo_status_t status;
@@ -1646,16 +1646,16 @@ _cairo_surface_old_show_glyphs (cairo_scaled_font_t *scaled_font,
}
static cairo_status_t
-_cairo_surface_composite_fixup_unbounded_internal (cairo_surface_t *dst,
- cairo_rectangle_t *src_rectangle,
- cairo_rectangle_t *mask_rectangle,
- int dst_x,
- int dst_y,
- unsigned int width,
- unsigned int height)
+_cairo_surface_composite_fixup_unbounded_internal (cairo_surface_t *dst,
+ cairo_rectangle_fixed_t *src_rectangle,
+ cairo_rectangle_fixed_t *mask_rectangle,
+ int dst_x,
+ int dst_y,
+ unsigned int width,
+ unsigned int height)
{
- cairo_rectangle_t dst_rectangle;
- cairo_rectangle_t drawn_rectangle;
+ cairo_rectangle_fixed_t dst_rectangle;
+ cairo_rectangle_fixed_t drawn_rectangle;
pixman_region16_t *drawn_region;
pixman_region16_t *clear_region;
cairo_status_t status = CAIRO_STATUS_SUCCESS;
@@ -1744,9 +1744,9 @@ _cairo_surface_composite_fixup_unbounded (cairo_surface_t *dst,
unsigned int width,
unsigned int height)
{
- cairo_rectangle_t src_tmp, mask_tmp;
- cairo_rectangle_t *src_rectangle = NULL;
- cairo_rectangle_t *mask_rectangle = NULL;
+ cairo_rectangle_fixed_t src_tmp, mask_tmp;
+ cairo_rectangle_fixed_t *src_rectangle = NULL;
+ cairo_rectangle_fixed_t *mask_rectangle = NULL;
assert (! dst->is_snapshot);
@@ -1819,9 +1819,9 @@ _cairo_surface_composite_shape_fixup_unbounded (cairo_surface_t *dst,
unsigned int width,
unsigned int height)
{
- cairo_rectangle_t src_tmp, mask_tmp;
- cairo_rectangle_t *src_rectangle = NULL;
- cairo_rectangle_t *mask_rectangle = NULL;
+ cairo_rectangle_fixed_t src_tmp, mask_tmp;
+ cairo_rectangle_fixed_t *src_rectangle = NULL;
+ cairo_rectangle_fixed_t *mask_rectangle = NULL;
assert (! dst->is_snapshot);