summaryrefslogtreecommitdiff
path: root/util/cairo-trace
diff options
context:
space:
mode:
authorM Joonas Pihlaja <jpihlaja@cc.helsinki.fi>2009-10-22 02:13:36 +0300
committerM Joonas Pihlaja <jpihlaja@cc.helsinki.fi>2009-10-22 02:29:47 +0300
commit43a775f60da57206b194039cd5d8b6a735284c45 (patch)
treed6336bb46cc3927819c1341900ae80ca54b71abc /util/cairo-trace
parentdf357f26ff72571acb840715efa4930054d4fdbe (diff)
[meta] Rename cairo_meta_surface_t to cairo_recording_surface_t.
The new name is more descriptive than the rather opaque meta surface. Discussed with vigour on the mailing list and #cairo: http://lists.cairographics.org/archives/cairo/2009-July/017571.html
Diffstat (limited to 'util/cairo-trace')
-rw-r--r--util/cairo-trace/trace.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/cairo-trace/trace.c b/util/cairo-trace/trace.c
index 79cd6a23..82172aa6 100644
--- a/util/cairo-trace/trace.c
+++ b/util/cairo-trace/trace.c
@@ -4714,22 +4714,22 @@ _cairo_test_null_surface_create (cairo_content_t content)
#endif
cairo_surface_t *
-cairo_meta_surface_create (cairo_content_t content,
- const cairo_rectangle_t *extents)
+cairo_recording_surface_create (cairo_content_t content,
+ const cairo_rectangle_t *extents)
{
cairo_surface_t *ret;
long surface_id;
_enter_trace ();
- ret = DLCALL (cairo_meta_surface_create, content, extents);
+ ret = DLCALL (cairo_recording_surface_create, content, extents);
surface_id = _create_surface_id (ret);
_emit_line_info ();
if (_write_lock ()) {
if (extents) {
_trace_printf ("dict\n"
- " /type /meta set\n"
+ " /type /recording set\n"
" /content //%s set\n"
" /extents [%f %f %f %f] set\n"
" surface dup /s%ld exch def\n",
@@ -4740,7 +4740,7 @@ cairo_meta_surface_create (cairo_content_t content,
_surface_object_set_size (ret, extents->width, extents->height);
} else {
_trace_printf ("dict\n"
- " /type /meta set\n"
+ " /type /recording set\n"
" /content //%s set\n"
" surface dup /s%ld exch def\n",
_content_to_string (content),