diff options
author | Uli Schlachter <psychon@znc.in> | 2013-03-22 14:04:44 +0100 |
---|---|---|
committer | Uli Schlachter <psychon@znc.in> | 2013-03-22 14:04:44 +0100 |
commit | b7c06fff1f597ba74fa6618766ec297d3a4bf880 (patch) | |
tree | ccb2b5ae5cd53055a8f181da8f2542e56ee9edeb | |
parent | caf50c07e225ee3a3e149234601e7305b1437736 (diff) |
boilerplate: rename xcb-render-0.0 to xcb-render-0_0
The test suite uses dots to separate the backend name from the content type.
Thus, the backend name must not contain any dots.
The xlib backend already calls its RENDER 0.0 target xlib-render-0_0 for this
reason. This commit makes the xcb backend match this.
Reported-by: Darxus <darxus@chaosreigns.com>
Signed-off-by: Uli Schlachter <psychon@znc.in>
-rw-r--r-- | boilerplate/cairo-boilerplate-xcb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boilerplate/cairo-boilerplate-xcb.c b/boilerplate/cairo-boilerplate-xcb.c index ffefecb9..cc9b422e 100644 --- a/boilerplate/cairo-boilerplate-xcb.c +++ b/boilerplate/cairo-boilerplate-xcb.c @@ -828,7 +828,7 @@ static const cairo_boilerplate_target_t targets[] = { FALSE, FALSE, FALSE }, { - "xcb-render-0.0", "xlib-fallback", NULL, NULL, + "xcb-render-0_0", "xlib-fallback", NULL, NULL, CAIRO_SURFACE_TYPE_XCB, CAIRO_CONTENT_COLOR_ALPHA, 1, "cairo_xcb_surface_create_with_xrender_format", _cairo_boilerplate_xcb_create_render_0_0, @@ -843,7 +843,7 @@ static const cairo_boilerplate_target_t targets[] = { FALSE, FALSE, FALSE }, { - "xcb-render-0.0", "xlib-fallback", NULL, NULL, + "xcb-render-0_0", "xlib-fallback", NULL, NULL, CAIRO_SURFACE_TYPE_XCB, CAIRO_CONTENT_COLOR, 1, "cairo_xcb_surface_create_with_xrender_format", _cairo_boilerplate_xcb_create_render_0_0, |