mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-29 17:20:13 +01:00
Still an experimental backend, it's now a little too late to stabilise for 1.10, but this should represent a major step forward in its feature set and an attempt to catch up with all the bug fixes that have been performed on xlib. Notably not tested yet (and expected to be broken) are mixed-endian connections and low bitdepth servers (the dithering support has not been copied over for instance). However, it seems robust enough for daily use... Of particular note in this update is that the xcb surface is now capable of subverting the xlib surface through the ./configure --enable-xlib-xcb option. This replaces the xlib surface with a proxy that forwards all operations to an equivalent xcb surface whilst preserving the cairo-xlib API that is required for compatibility with the existing applications, for instance GTK+ and Mozilla. Also you can experiment with enabling a DRM bypass, though you need to be extremely foolhardy to do so.
144 lines
4 KiB
C
144 lines
4 KiB
C
/*
|
|
* Copyright © 2009 Chris Wilson
|
|
*
|
|
* Permission to use, copy, modify, distribute, and sell this software
|
|
* and its documentation for any purpose is hereby granted without
|
|
* fee, provided that the above copyright notice appear in all copies
|
|
* and that both that copyright notice and this permission notice
|
|
* appear in supporting documentation, and that the name of
|
|
* Chris Wilson not be used in advertising or publicity pertaining to
|
|
* distribution of the software without specific, written prior
|
|
* permission. Chris Wilson makes no representations about the
|
|
* suitability of this software for any purpose. It is provided "as
|
|
* is" without express or implied warranty.
|
|
*
|
|
* CHRIS WILSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
|
|
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
* FITNESS, IN NO EVENT SHALL CHRIS WILSON BE LIABLE FOR ANY SPECIAL,
|
|
* INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
* Author: Chris Wilson <chris@chris-wilson.co.uk>
|
|
*/
|
|
|
|
#include "cairo-test.h"
|
|
#if CAIRO_HAS_XCB_SURFACE
|
|
#include <cairo-xcb.h>
|
|
#endif
|
|
|
|
#include "surface-source.c"
|
|
|
|
#if CAIRO_HAS_XCB_SURFACE
|
|
static cairo_user_data_key_t closure_key;
|
|
|
|
struct closure {
|
|
cairo_device_t *device;
|
|
xcb_connection_t *connection;
|
|
xcb_pixmap_t pixmap;
|
|
};
|
|
|
|
static void
|
|
cleanup (void *data)
|
|
{
|
|
struct closure *arg = data;
|
|
|
|
cairo_device_finish (arg->device);
|
|
cairo_device_destroy (arg->device);
|
|
|
|
xcb_free_pixmap (arg->connection, arg->pixmap);
|
|
xcb_disconnect (arg->connection);
|
|
|
|
free (arg);
|
|
}
|
|
|
|
static xcb_render_pictforminfo_t *
|
|
find_depth (xcb_connection_t *connection, int depth, void **formats_out)
|
|
{
|
|
xcb_render_query_pict_formats_reply_t *formats;
|
|
xcb_render_query_pict_formats_cookie_t cookie;
|
|
xcb_render_pictforminfo_iterator_t i;
|
|
|
|
cookie = xcb_render_query_pict_formats (connection);
|
|
xcb_flush (connection);
|
|
|
|
formats = xcb_render_query_pict_formats_reply (connection, cookie, 0);
|
|
if (formats == NULL)
|
|
return NULL;
|
|
|
|
for (i = xcb_render_query_pict_formats_formats_iterator (formats);
|
|
i.rem;
|
|
xcb_render_pictforminfo_next (&i))
|
|
{
|
|
if (XCB_RENDER_PICT_TYPE_DIRECT != i.data->type)
|
|
continue;
|
|
|
|
if (depth != i.data->depth)
|
|
continue;
|
|
|
|
*formats_out = formats;
|
|
return i.data;
|
|
}
|
|
|
|
free (formats);
|
|
return NULL;
|
|
}
|
|
#endif
|
|
|
|
static cairo_surface_t *
|
|
create_source_surface (int size)
|
|
{
|
|
#if CAIRO_HAS_XCB_SURFACE
|
|
xcb_render_pictforminfo_t *render_format;
|
|
struct closure *data;
|
|
cairo_surface_t *surface;
|
|
xcb_screen_t *root;
|
|
xcb_void_cookie_t cookie;
|
|
void *formats;
|
|
|
|
data = xmalloc (sizeof (struct closure));
|
|
|
|
data->connection = xcb_connect (NULL, NULL);
|
|
render_format = find_depth (data->connection, 32, &formats);
|
|
if (render_format == NULL) {
|
|
xcb_disconnect (data->connection);
|
|
free (data);
|
|
return NULL;
|
|
}
|
|
|
|
root = xcb_setup_roots_iterator (xcb_get_setup (data->connection)).data;
|
|
|
|
data->pixmap = xcb_generate_id (data->connection);
|
|
cookie = xcb_create_pixmap_checked (data->connection, 32,
|
|
data->pixmap, root->root, size, size);
|
|
/* slow, but sure */
|
|
if (xcb_request_check (data->connection, cookie) != NULL) {
|
|
free (formats);
|
|
xcb_disconnect (data->connection);
|
|
free (data);
|
|
return NULL;
|
|
}
|
|
|
|
surface = cairo_xcb_surface_create_with_xrender_format (data->connection,
|
|
root,
|
|
data->pixmap,
|
|
render_format,
|
|
size, size);
|
|
free (formats);
|
|
|
|
data->device = cairo_device_reference (cairo_surface_get_device (surface));
|
|
cairo_surface_set_user_data (surface, &closure_key, data, cleanup);
|
|
|
|
return surface;
|
|
#else
|
|
return NULL;
|
|
#endif
|
|
}
|
|
|
|
CAIRO_TEST (xcb_surface_source,
|
|
"Test using a XCB surface as the source",
|
|
"source", /* keywords */
|
|
NULL, /* requirements */
|
|
SIZE, SIZE,
|
|
preamble, draw)
|