mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-22 02:08:09 +02:00
Fix create_xcb_surface signature
This commit is contained in:
parent
810d9d1985
commit
e0bf137804
1 changed files with 5 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue