diff options
author | Benjamin Otte <otte@gnome.org> | 2009-09-30 08:54:19 +0200 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2009-09-30 08:58:19 +0200 |
commit | 6809e1216119e16c5be236418dc560d2e9bf854d (patch) | |
tree | d76fc38a8377e3134743659a590bfb514a1eefe0 /src/cairo-xml-surface.c | |
parent | f8c49b4187a32b60408b23b2c2abce1778a8dc95 (diff) |
[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-xml-surface.c')
-rw-r--r-- | src/cairo-xml-surface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-xml-surface.c b/src/cairo-xml-surface.c index 61e8f61a..c40f61fc 100644 --- a/src/cairo-xml-surface.c +++ b/src/cairo-xml-surface.c @@ -1131,7 +1131,7 @@ cairo_xml_for_meta_surface (cairo_xml_t *xml, _cairo_xml_indent (xml, 2); cairo_surface_set_device_offset (surface, -extents.x, -extents.y); - status = cairo_meta_surface_replay (meta, surface); + status = _cairo_meta_surface_replay (meta, surface); cairo_surface_destroy (surface); _cairo_xml_indent (xml, -2); |