summaryrefslogtreecommitdiff
path: root/src/cairo-user-font.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2009-09-30 08:54:19 +0200
committerBenjamin Otte <otte@gnome.org>2009-09-30 08:58:19 +0200
commit6809e1216119e16c5be236418dc560d2e9bf854d (patch)
treed76fc38a8377e3134743659a590bfb514a1eefe0 /src/cairo-user-font.c
parentf8c49b4187a32b60408b23b2c2abce1778a8dc95 (diff)
downloadcairo-6809e1216119e16c5be236418dc560d2e9bf854d.tar.gz
[API] Make _cairo_meta_surface_replay() private again
Replaying a meta surface can be achieved by using it as a source for a cairo_paint() so exporting a separate API is unnecesary and confusing. So after consulting Chris and Carl, we decided to remove the function again.
Diffstat (limited to 'src/cairo-user-font.c')
-rw-r--r--src/cairo-user-font.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-user-font.c b/src/cairo-user-font.c
index 42e8bae29..1cd5ffccd 100644
--- a/src/cairo-user-font.c
+++ b/src/cairo-user-font.c
@@ -202,7 +202,7 @@ _cairo_user_scaled_glyph_init (void *abstract_font,
cairo_surface_set_device_offset (surface,
- _cairo_fixed_integer_floor (scaled_glyph->bbox.p1.x),
- _cairo_fixed_integer_floor (scaled_glyph->bbox.p1.y));
- status = cairo_meta_surface_replay (meta_surface, surface);
+ status = _cairo_meta_surface_replay (meta_surface, surface);
if (unlikely (status)) {
cairo_surface_destroy(surface);