beta-0.89.2
[luatex.git] / source / libs / cairo / cairo-src / src / cairo-xcb-connection-shm.c
blob7720bbbd25b6def262267592c6ef70521a0377f1
1 /* cairo - a vector graphics library with display and print output
3 * Copyright © 2009 Intel Corporation
5 * This library is free software; you can redistribute it and/or
6 * modify it either under the terms of the GNU Lesser General Public
7 * License version 2.1 as published by the Free Software Foundation
8 * (the "LGPL") or, at your option, under the terms of the Mozilla
9 * Public License Version 1.1 (the "MPL"). If you do not alter this
10 * notice, a recipient may use your version of this file under either
11 * the MPL or the LGPL.
13 * You should have received a copy of the LGPL along with this library
14 * in the file COPYING-LGPL-2.1; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
16 * You should have received a copy of the MPL along with this library
17 * in the file COPYING-MPL-1.1
19 * The contents of this file are subject to the Mozilla Public License
20 * Version 1.1 (the "License"); you may not use this file except in
21 * compliance with the License. You may obtain a copy of the License at
22 * http://www.mozilla.org/MPL/
24 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
25 * OF ANY KIND, either express or implied. See the LGPL or the MPL for
26 * the specific language governing rights and limitations.
28 * Contributor(s):
29 * Chris Wilson <chris@chris-wilson.co.uk>
32 #include "cairoint.h"
34 #if CAIRO_HAS_XCB_SHM_FUNCTIONS
36 #include "cairo-xcb-private.h"
38 #include <xcb/xcbext.h>
39 #include <xcb/shm.h>
41 uint32_t
42 _cairo_xcb_connection_shm_attach (cairo_xcb_connection_t *connection,
43 uint32_t id,
44 cairo_bool_t readonly)
46 uint32_t segment = _cairo_xcb_connection_get_xid (connection);
47 assert (connection->flags & CAIRO_XCB_HAS_SHM);
48 xcb_shm_attach (connection->xcb_connection, segment, id, readonly);
49 return segment;
52 void
53 _cairo_xcb_connection_shm_put_image (cairo_xcb_connection_t *connection,
54 xcb_drawable_t dst,
55 xcb_gcontext_t gc,
56 uint16_t total_width,
57 uint16_t total_height,
58 int16_t src_x,
59 int16_t src_y,
60 uint16_t width,
61 uint16_t height,
62 int16_t dst_x,
63 int16_t dst_y,
64 uint8_t depth,
65 uint32_t shm,
66 uint32_t offset)
68 assert (connection->flags & CAIRO_XCB_HAS_SHM);
69 xcb_shm_put_image (connection->xcb_connection, dst, gc, total_width, total_height,
70 src_x, src_y, width, height, dst_x, dst_y, depth,
71 XCB_IMAGE_FORMAT_Z_PIXMAP, 0, shm, offset);
74 cairo_status_t
75 _cairo_xcb_connection_shm_get_image (cairo_xcb_connection_t *connection,
76 xcb_drawable_t src,
77 int16_t src_x,
78 int16_t src_y,
79 uint16_t width,
80 uint16_t height,
81 uint32_t shmseg,
82 uint32_t offset)
84 xcb_shm_get_image_reply_t *reply;
86 assert (connection->flags & CAIRO_XCB_HAS_SHM);
87 reply = xcb_shm_get_image_reply (connection->xcb_connection,
88 xcb_shm_get_image (connection->xcb_connection,
89 src,
90 src_x, src_y,
91 width, height,
92 (uint32_t) -1,
93 XCB_IMAGE_FORMAT_Z_PIXMAP,
94 shmseg, offset),
95 NULL);
96 free (reply);
98 if (!reply) {
99 /* an error here should be impossible */
100 return _cairo_error (CAIRO_STATUS_READ_ERROR);
103 return CAIRO_STATUS_SUCCESS;
106 void
107 _cairo_xcb_connection_shm_detach (cairo_xcb_connection_t *connection,
108 uint32_t segment)
110 assert (connection->flags & CAIRO_XCB_HAS_SHM);
111 xcb_shm_detach (connection->xcb_connection, segment);
112 _cairo_xcb_connection_put_xid (connection, segment);
115 #endif /* CAIRO_HAS_XCB_SHM_FUNCTIONS */