VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/libXdamage-1.1/X11/extensions/Xdamage.h@ 66316

最後變更 在這個檔案從66316是 17563,由 vboxsync 提交於 16 年 前

Additions/x11: added header files for the X Damage and X Composite extensions

  • 屬性 svn:eol-style 設為 native
檔案大小: 2.2 KB
 
1/*
2 * $Id$
3 *
4 * Copyright © 2003 Keith Packard
5 *
6 * Permission to use, copy, modify, distribute, and sell this software and its
7 * documentation for any purpose is hereby granted without fee, provided that
8 * the above copyright notice appear in all copies and that both that
9 * copyright notice and this permission notice appear in supporting
10 * documentation, and that the name of Keith Packard not be used in
11 * advertising or publicity pertaining to distribution of the software without
12 * specific, written prior permission. Keith Packard makes no
13 * representations about the suitability of this software for any purpose. It
14 * is provided "as is" without express or implied warranty.
15 *
16 * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22 * PERFORMANCE OF THIS SOFTWARE.
23 */
24
25#ifndef _XDAMAGE_H_
26#define _XDAMAGE_H_
27
28#include <X11/extensions/damagewire.h>
29#include <X11/extensions/Xfixes.h>
30#include <X11/Xfuncproto.h>
31
32#define XDAMAGE_1_1_INTERFACE
33
34typedef XID Damage;
35
36typedef struct {
37 int type; /* event base */
38 unsigned long serial;
39 Bool send_event;
40 Display *display;
41 Drawable drawable;
42 Damage damage;
43 int level;
44 Bool more; /* more events will be delivered immediately */
45 Time timestamp;
46 XRectangle area;
47 XRectangle geometry;
48} XDamageNotifyEvent;
49
50_XFUNCPROTOBEGIN
51
52Bool XDamageQueryExtension (Display *dpy, int *event_basep, int *error_basep);
53
54Status XDamageQueryVersion (Display *dpy,
55 int *major_versionp,
56 int *minor_versionp);
57
58Damage
59XDamageCreate (Display *dpy, Drawable drawable, int level);
60
61void
62XDamageDestroy (Display *dpy, Damage damage);
63
64void
65XDamageSubtract (Display *dpy, Damage damage,
66 XserverRegion repair, XserverRegion parts);
67
68void
69XDamageAdd (Display *dpy, Drawable drawable, XserverRegion region);
70
71_XFUNCPROTOEND
72
73#endif /* _XDAMAGE_H_ */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette