Fix create_xcb_surface signature

This commit is contained in:
Christian Biesinger 2006-04-23 21:20:55 +02:00
parent 810d9d1985
commit e0bf137804

View file

@ -955,8 +955,12 @@ _format_from_cairo(XCBConnection *c, cairo_format_t fmt)
}
static cairo_surface_t *
create_xcb_surface (int width, int height, void **closure)
create_xcb_surface (cairo_test_t *test,
cairo_content_t content,
void **closure)
{
int width = test->width;
int height = test->height;
XCBSCREEN *root;
xcb_target_closure_t *xtc;
cairo_surface_t *surface;