1 | /* |
2 | * Copyright © 2003 Keith Packard |
3 | * |
4 | * Permission to use, copy, modify, distribute, and sell this software and its |
5 | * documentation for any purpose is hereby granted without fee, provided that |
6 | * the above copyright notice appear in all copies and that both that |
7 | * copyright notice and this permission notice appear in supporting |
8 | * documentation, and that the name of Keith Packard not be used in |
9 | * advertising or publicity pertaining to distribution of the software without |
10 | * specific, written prior permission. Keith Packard makes no |
11 | * representations about the suitability of this software for any purpose. It |
12 | * is provided "as is" without express or implied warranty. |
13 | * |
14 | * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
15 | * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO |
16 | * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR |
17 | * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, |
18 | * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER |
19 | * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
20 | * PERFORMANCE OF THIS SOFTWARE. |
21 | */ |
22 | |
23 | #ifndef _DAMAGEWIRE_H_ |
24 | #define _DAMAGEWIRE_H_ |
25 | |
26 | #define DAMAGE_NAME "DAMAGE" |
27 | #define DAMAGE_MAJOR 1 |
28 | #define DAMAGE_MINOR 1 |
29 | |
30 | /************* Version 1 ****************/ |
31 | |
32 | /* Constants */ |
33 | #define XDamageReportRawRectangles 0 |
34 | #define XDamageReportDeltaRectangles 1 |
35 | #define XDamageReportBoundingBox 2 |
36 | #define XDamageReportNonEmpty 3 |
37 | |
38 | /* Requests */ |
39 | #define X_DamageQueryVersion 0 |
40 | #define X_DamageCreate 1 |
41 | #define X_DamageDestroy 2 |
42 | #define X_DamageSubtract 3 |
43 | #define X_DamageAdd 4 |
44 | |
45 | #define XDamageNumberRequests (X_DamageAdd + 1) |
46 | |
47 | /* Events */ |
48 | #define XDamageNotify 0 |
49 | |
50 | #define XDamageNumberEvents (XDamageNotify + 1) |
51 | |
52 | /* Errors */ |
53 | #define BadDamage 0 |
54 | #define XDamageNumberErrors (BadDamage + 1) |
55 | |
56 | #endif /* _DAMAGEWIRE_H_ */ |
57 | |