diff options
author | M Joonas Pihlaja <jpihlaja@cc.helsinki.fi> | 2009-10-22 02:13:36 +0300 |
---|---|---|
committer | M Joonas Pihlaja <jpihlaja@cc.helsinki.fi> | 2009-10-22 02:29:47 +0300 |
commit | 43a775f60da57206b194039cd5d8b6a735284c45 (patch) | |
tree | d6336bb46cc3927819c1341900ae80ca54b71abc /boilerplate/cairo-boilerplate-pdf.c | |
parent | df357f26ff72571acb840715efa4930054d4fdbe (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 'boilerplate/cairo-boilerplate-pdf.c')
-rw-r--r-- | boilerplate/cairo-boilerplate-pdf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/boilerplate/cairo-boilerplate-pdf.c b/boilerplate/cairo-boilerplate-pdf.c index 191eb1b5..dd14bfab 100644 --- a/boilerplate/cairo-boilerplate-pdf.c +++ b/boilerplate/cairo-boilerplate-pdf.c @@ -30,8 +30,8 @@ #include <cairo-pdf-surface-private.h> #include <cairo-paginated-surface-private.h> -#if ! CAIRO_HAS_META_SURFACE -#define CAIRO_SURFACE_TYPE_META CAIRO_INTERNAL_SURFACE_TYPE_META +#if ! CAIRO_HAS_RECORDING_SURFACE +#define CAIRO_SURFACE_TYPE_RECORDING CAIRO_INTERNAL_SURFACE_TYPE_RECORDING #endif static const cairo_user_data_key_t pdf_closure_key; @@ -241,7 +241,7 @@ static const cairo_boilerplate_target_t targets[] = { }, { "pdf", "pdf", ".pdf", NULL, - CAIRO_SURFACE_TYPE_META, CAIRO_CONTENT_COLOR, 0, + CAIRO_SURFACE_TYPE_RECORDING, CAIRO_CONTENT_COLOR, 0, "cairo_pdf_surface_create", _cairo_boilerplate_pdf_create_surface, _cairo_boilerplate_pdf_force_fallbacks, |