summaryrefslogtreecommitdiff
path: root/src/cairo-image-surface.c
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2005-06-17 13:25:19 +0000
committerKristian Høgsberg <krh@redhat.com>2005-06-17 13:25:19 +0000
commit66f8b1202ed82e4e88a63c6c385aded852186e68 (patch)
tree6b7b2d1cebeb1e30767b79f4f2b95c7652f113ac /src/cairo-image-surface.c
parent9318742aa434c1e8dd7c71ae07632383f8f7c59b (diff)
downloadcairo-66f8b1202ed82e4e88a63c6c385aded852186e68.tar.gz
Remove matrix, filter and repeat from the cairo_surface_t struct.
Diffstat (limited to 'src/cairo-image-surface.c')
-rw-r--r--src/cairo-image-surface.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cairo-image-surface.c b/src/cairo-image-surface.c
index 6b509d6dc..255cd0c43 100644
--- a/src/cairo-image-surface.c
+++ b/src/cairo-image-surface.c
@@ -351,7 +351,7 @@ _cairo_image_surface_clone_similar (void *abstract_surface,
return CAIRO_INT_STATUS_UNSUPPORTED;
}
-cairo_status_t
+static cairo_status_t
_cairo_image_surface_set_matrix (cairo_image_surface_t *surface,
const cairo_matrix_t *matrix)
{
@@ -374,7 +374,7 @@ _cairo_image_surface_set_matrix (cairo_image_surface_t *surface,
return CAIRO_STATUS_SUCCESS;
}
-cairo_status_t
+static cairo_status_t
_cairo_image_surface_set_filter (cairo_image_surface_t *surface, cairo_filter_t filter)
{
pixman_filter_t pixman_filter;
@@ -404,7 +404,7 @@ _cairo_image_surface_set_filter (cairo_image_surface_t *surface, cairo_filter_t
return CAIRO_STATUS_SUCCESS;
}
-cairo_status_t
+static cairo_status_t
_cairo_image_surface_set_repeat (cairo_image_surface_t *surface, int repeat)
{
pixman_image_set_repeat (surface->pixman_image, repeat);