diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2007-04-20 01:46:23 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2007-04-21 02:08:37 -0400 |
commit | 1345552ac24099900acdb968f905d6e75cc20593 (patch) | |
tree | 313b236af04b5d666b3256dbb76f75fa1074506b /src/cairo-xlib-surface-private.h | |
parent | 735be3f09d1d150909305ff3232fda42efcb87bd (diff) |
[xlib] Move cairo_xlib_surface_t definition into cairo-xlib-surface-private.h
Diffstat (limited to 'src/cairo-xlib-surface-private.h')
-rw-r--r-- | src/cairo-xlib-surface-private.h | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/src/cairo-xlib-surface-private.h b/src/cairo-xlib-surface-private.h new file mode 100644 index 00000000..7038d85e --- /dev/null +++ b/src/cairo-xlib-surface-private.h @@ -0,0 +1,91 @@ +/* Cairo - a vector graphics library with display and print output + * + * Copyright © 2005 Red Hat, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it either under the terms of the GNU Lesser General Public + * License version 2.1 as published by the Free Software Foundation + * (the "LGPL") or, at your option, under the terms of the Mozilla + * Public License Version 1.1 (the "MPL"). If you do not alter this + * notice, a recipient may use your version of this file under either + * the MPL or the LGPL. + * + * You should have received a copy of the LGPL along with this library + * in the file COPYING-LGPL-2.1; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the MPL along with this library + * in the file COPYING-MPL-1.1 + * + * The contents of this file are subject to the Mozilla Public License + * Version 1.1 (the "License"); you may not use this file except in + * compliance with the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY + * OF ANY KIND, either express or implied. See the LGPL or the MPL for + * the specific language governing rights and limitations. + * + * The Original Code is the cairo graphics library. + * + * The Initial Developer of the Original Code is Red Hat, Inc. + */ + +#ifndef CAIRO_XLIB_SURFACE_PRIVATE_H +#define CAIRO_XLIB_SURFACE_PRIVATE_H + +#include "cairo-xlib.h" + +typedef struct _cairo_xlib_surface cairo_xlib_surface_t; + +struct _cairo_xlib_surface { + cairo_surface_t base; + + Display *dpy; + cairo_xlib_screen_info_t *screen_info; + + GC gc; + Drawable drawable; + Screen *screen; + cairo_bool_t owns_pixmap; + Visual *visual; + + int use_pixmap; + + int render_major; + int render_minor; + + /* TRUE if the server has a bug with repeating pictures + * + * https://bugs.freedesktop.org/show_bug.cgi?id=3566 + * + * We can't test for this because it depends on whether the + * picture is in video memory or not. + * + * We also use this variable as a guard against a second + * independent bug with transformed repeating pictures: + * + * http://lists.freedesktop.org/archives/cairo/2004-September/001839.html + * + * Both are fixed in xorg >= 6.9 and hopefully in > 6.8.2, so + * we can reuse the test for now. + */ + cairo_bool_t buggy_repeat; + + int width; + int height; + int depth; + + Picture dst_picture, src_picture; + + cairo_bool_t have_clip_rects; + XRectangle embedded_clip_rects[4]; + XRectangle *clip_rects; + int num_clip_rects; + + XRenderPictFormat *xrender_format; + cairo_filter_t filter; + int repeat; + XTransform xtransform; +}; + +#endif /* CAIRO_XLIB_SURFACE_PRIVATE_H */ |