diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2007-03-08 18:08:37 -0500 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2007-03-13 05:14:19 -0400 |
commit | cd78da36f663b99c67d50dcd692cd7b67677c82a (patch) | |
tree | 5f8c98a593ad9a639fbf1047072127d267de41a0 /boilerplate | |
parent | 8997b3a023b0edb8877675ce520fbb883d6fa188 (diff) |
[test-surfaces] Prefix public symbols with _cairo
Diffstat (limited to 'boilerplate')
-rw-r--r-- | boilerplate/cairo-boilerplate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/boilerplate/cairo-boilerplate.c b/boilerplate/cairo-boilerplate.c index 561e6df0..f726d426 100644 --- a/boilerplate/cairo-boilerplate.c +++ b/boilerplate/cairo-boilerplate.c @@ -134,7 +134,7 @@ create_test_fallback_surface (const char *name, void **closure) { *closure = NULL; - return _test_fallback_surface_create (content, width, height); + return _cairo_test_fallback_surface_create (content, width, height); } static cairo_surface_t * @@ -146,7 +146,7 @@ create_test_meta_surface (const char *name, void **closure) { *closure = NULL; - return _test_meta_surface_create (content, width, height); + return _cairo_test_meta_surface_create (content, width, height); } static const cairo_user_data_key_t test_paginated_closure_key; @@ -179,7 +179,7 @@ create_test_paginated_surface (const char *name, tpc->data = xcalloc (tpc->stride * height, 1); - surface = _test_paginated_surface_create_for_data (tpc->data, + surface = _cairo_test_paginated_surface_create_for_data (tpc->data, tpc->content, tpc->width, tpc->height, |