VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/xorg-server-1.6.0/damage.h@ 40349

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

export to OSE

  • 屬性 svn:eol-style 設為 native
檔案大小: 3.4 KB
 
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
30typedef struct _damage *DamagePtr;
31
32typedef enum _damageReportLevel {
33 DamageReportRawRegion,
34 DamageReportDeltaRegion,
35 DamageReportBoundingBox,
36 DamageReportNonEmpty,
37 DamageReportNone
38} DamageReportLevel;
39
40typedef void (*DamageReportFunc) (DamagePtr pDamage, RegionPtr pRegion, void *closure);
41typedef 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. */
44typedef void (*DamageMarkerFunc) (DrawablePtr pDrawable, DamagePtr pDamage, RegionPtr pOldDamage, RegionPtr pRegion, void *closure);
45
46Bool
47DamageSetup (ScreenPtr pScreen);
48
49DamagePtr
50DamageCreate (DamageReportFunc damageReport,
51 DamageDestroyFunc damageDestroy,
52 DamageReportLevel damageLevel,
53 Bool isInternal,
54 ScreenPtr pScreen,
55 void * closure);
56
57void
58DamageDrawInternal (ScreenPtr pScreen, Bool enable);
59
60void
61DamageRegister (DrawablePtr pDrawable,
62 DamagePtr pDamage);
63
64void
65DamageUnregister (DrawablePtr pDrawable,
66 DamagePtr pDamage);
67
68void
69DamageDestroy (DamagePtr pDamage);
70
71Bool
72DamageSubtract (DamagePtr pDamage,
73 const RegionPtr pRegion);
74
75void
76DamageEmpty (DamagePtr pDamage);
77
78RegionPtr
79DamageRegion (DamagePtr pDamage);
80
81RegionPtr
82DamagePendingRegion (DamagePtr pDamage);
83
84/* In case of rendering, call this before the submitting the commands. */
85void
86DamageRegionAppend (DrawablePtr pDrawable, RegionPtr pRegion);
87
88/* Call this directly after the rendering operation has been submitted. */
89void
90DamageRegionProcessPending (DrawablePtr pDrawable);
91
92/* Call this some time after rendering is done, only relevant when a damageMarker is provided. */
93void
94DamageRegionRendered (DrawablePtr pDrawable, DamagePtr pDamage, RegionPtr pOldDamage, RegionPtr pRegion);
95
96/* Avoid using this call, it only exists for API compatibility. */
97void
98DamageDamageRegion (DrawablePtr pDrawable,
99 const RegionPtr pRegion);
100
101void
102DamageSetReportAfterOp (DamagePtr pDamage, Bool reportAfter);
103
104void
105DamageSetPostRenderingFunctions(DamagePtr pDamage, DamageReportFunc damageReportPostRendering,
106 DamageMarkerFunc damageMarker);
107
108#endif /* _DAMAGE_H_ */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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