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 | #ifdef HAVE_DIX_CONFIG_H
|
---|
24 | #include <dix-config.h>
|
---|
25 | #endif
|
---|
26 |
|
---|
27 | #ifndef _DAMAGE_H_
|
---|
28 | #define _DAMAGE_H_
|
---|
29 |
|
---|
30 | typedef struct _damage *DamagePtr;
|
---|
31 |
|
---|
32 | typedef enum _damageReportLevel {
|
---|
33 | DamageReportRawRegion,
|
---|
34 | DamageReportDeltaRegion,
|
---|
35 | DamageReportBoundingBox,
|
---|
36 | DamageReportNonEmpty,
|
---|
37 | DamageReportNone
|
---|
38 | } DamageReportLevel;
|
---|
39 |
|
---|
40 | typedef void (*DamageReportFunc) (DamagePtr pDamage, RegionPtr pRegion, void *closure);
|
---|
41 | typedef void (*DamageDestroyFunc) (DamagePtr pDamage, void *closure);
|
---|
42 | /* It's the responsibility of the driver to duplicate both regions. */
|
---|
43 | /* At some point DamageRegionRendered() must be called. */
|
---|
44 | typedef void (*DamageMarkerFunc) (DrawablePtr pDrawable, DamagePtr pDamage, RegionPtr pOldDamage, RegionPtr pRegion, void *closure);
|
---|
45 |
|
---|
46 | Bool
|
---|
47 | DamageSetup (ScreenPtr pScreen);
|
---|
48 |
|
---|
49 | DamagePtr
|
---|
50 | DamageCreate (DamageReportFunc damageReport,
|
---|
51 | DamageDestroyFunc damageDestroy,
|
---|
52 | DamageReportLevel damageLevel,
|
---|
53 | Bool isInternal,
|
---|
54 | ScreenPtr pScreen,
|
---|
55 | void * closure);
|
---|
56 |
|
---|
57 | void
|
---|
58 | DamageDrawInternal (ScreenPtr pScreen, Bool enable);
|
---|
59 |
|
---|
60 | void
|
---|
61 | DamageRegister (DrawablePtr pDrawable,
|
---|
62 | DamagePtr pDamage);
|
---|
63 |
|
---|
64 | void
|
---|
65 | DamageUnregister (DrawablePtr pDrawable,
|
---|
66 | DamagePtr pDamage);
|
---|
67 |
|
---|
68 | void
|
---|
69 | DamageDestroy (DamagePtr pDamage);
|
---|
70 |
|
---|
71 | Bool
|
---|
72 | DamageSubtract (DamagePtr pDamage,
|
---|
73 | const RegionPtr pRegion);
|
---|
74 |
|
---|
75 | void
|
---|
76 | DamageEmpty (DamagePtr pDamage);
|
---|
77 |
|
---|
78 | RegionPtr
|
---|
79 | DamageRegion (DamagePtr pDamage);
|
---|
80 |
|
---|
81 | RegionPtr
|
---|
82 | DamagePendingRegion (DamagePtr pDamage);
|
---|
83 |
|
---|
84 | /* In case of rendering, call this before the submitting the commands. */
|
---|
85 | void
|
---|
86 | DamageRegionAppend (DrawablePtr pDrawable, RegionPtr pRegion);
|
---|
87 |
|
---|
88 | /* Call this directly after the rendering operation has been submitted. */
|
---|
89 | void
|
---|
90 | DamageRegionProcessPending (DrawablePtr pDrawable);
|
---|
91 |
|
---|
92 | /* Call this some time after rendering is done, only relevant when a damageMarker is provided. */
|
---|
93 | void
|
---|
94 | DamageRegionRendered (DrawablePtr pDrawable, DamagePtr pDamage, RegionPtr pOldDamage, RegionPtr pRegion);
|
---|
95 |
|
---|
96 | /* Avoid using this call, it only exists for API compatibility. */
|
---|
97 | void
|
---|
98 | DamageDamageRegion (DrawablePtr pDrawable,
|
---|
99 | const RegionPtr pRegion);
|
---|
100 |
|
---|
101 | void
|
---|
102 | DamageSetReportAfterOp (DamagePtr pDamage, Bool reportAfter);
|
---|
103 |
|
---|
104 | void
|
---|
105 | DamageSetPostRenderingFunctions(DamagePtr pDamage, DamageReportFunc damageReportPostRendering,
|
---|
106 | DamageMarkerFunc damageMarker);
|
---|
107 |
|
---|
108 | #endif /* _DAMAGE_H_ */
|
---|