summaryrefslogtreecommitdiff
path: root/src/cairo-type3-glyph-surface.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-type3-glyph-surface.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-type3-glyph-surface.c')
-rw-r--r--src/cairo-type3-glyph-surface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cairo-type3-glyph-surface.c b/src/cairo-type3-glyph-surface.c
index f55b12ac8..f7699b8b3 100644
--- a/src/cairo-type3-glyph-surface.c
+++ b/src/cairo-type3-glyph-surface.c
@@ -449,7 +449,7 @@ _cairo_type3_glyph_surface_analyze_glyph (void *abstract_surface,
goto cleanup;
}
- status = cairo_meta_surface_replay (scaled_glyph->meta_surface,
+ status = _cairo_meta_surface_replay (scaled_glyph->meta_surface,
&surface->base);
if (unlikely (status))
goto cleanup;
@@ -544,7 +544,7 @@ _cairo_type3_glyph_surface_emit_glyph (void *abstract_surface,
_cairo_type3_glyph_surface_set_stream (surface, mem_stream);
_cairo_output_stream_printf (surface->stream, "q\n");
- status = cairo_meta_surface_replay (scaled_glyph->meta_surface,
+ status = _cairo_meta_surface_replay (scaled_glyph->meta_surface,
&surface->base);
status2 = _cairo_pdf_operators_flush (&surface->pdf_operators);