[test] Add test case for a leaky dashed rectangle.
[cairo/haiku.git] / test / xlib-surface-source.c
blob3a70a4dbce9ba5ee26c69962d492a8a7282cd5c3
1 /*
2 * Copyright © 2008 Chris Wilson
4 * Permission to use, copy, modify, distribute, and sell this software
5 * and its documentation for any purpose is hereby granted without
6 * fee, provided that the above copyright notice appear in all copies
7 * and that both that copyright notice and this permission notice
8 * appear in supporting documentation, and that the name of
9 * Chris Wilson not be used in advertising or publicity pertaining to
10 * distribution of the software without specific, written prior
11 * permission. Chris Wilson makes no representations about the
12 * suitability of this software for any purpose. It is provided "as
13 * is" without express or implied warranty.
15 * CHRIS WILSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
16 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17 * FITNESS, IN NO EVENT SHALL CHRIS WILSON BE LIABLE FOR ANY SPECIAL,
18 * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
19 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
21 * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 * Author: Chris Wilson <chris@chris-wilson.co.uk>
26 #include "cairo-test.h"
27 #include <cairo-xlib.h>
28 #if CAIRO_HAS_XLIB_XRENDER_SURFACE
29 #include <cairo-xlib-xrender.h>
30 #endif
32 #define NAME "xlib"
33 #include "surface-source.c"
35 static cairo_user_data_key_t closure_key;
37 struct closure {
38 Display *dpy;
39 Pixmap pix;
42 static void
43 cleanup (void *data)
45 struct closure *arg = data;
47 XFreePixmap (arg->dpy, arg->pix);
48 XCloseDisplay (arg->dpy);
50 free (arg);
53 static cairo_surface_t *
54 create_source_surface (int size)
56 XRenderPictFormat *xrender_format;
57 struct closure *data;
58 cairo_surface_t *surface;
60 data = xmalloc (sizeof (struct closure));
62 data->dpy = XOpenDisplay (NULL);
63 xrender_format = XRenderFindStandardFormat (data->dpy, PictStandardARGB32);
65 data->pix = XCreatePixmap (data->dpy, DefaultRootWindow (data->dpy),
66 size, size, xrender_format->depth);
68 surface = cairo_xlib_surface_create_with_xrender_format (data->dpy,
69 data->pix,
70 DefaultScreenOfDisplay (data->dpy),
71 xrender_format,
72 size, size);
73 cairo_surface_set_user_data (surface, &closure_key, data, cleanup);
75 return surface;