VirtualBox

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

最後變更 在這個檔案從25078是 25078,由 vboxsync 提交於 15 年 前

Additions/x11/x11include: exported and set eol-style on new headers

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:executable 設為 *
檔案大小: 2.4 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#ifdef HAVE_DIX_CONFIG_H
26#include <dix-config.h>
27#endif
28
29#ifndef _DAMAGE_H_
30#define _DAMAGE_H_
31
32typedef struct _damage *DamagePtr;
33
34typedef enum _damageReportLevel {
35 DamageReportRawRegion,
36 DamageReportDeltaRegion,
37 DamageReportBoundingBox,
38 DamageReportNonEmpty,
39 DamageReportNone
40} DamageReportLevel;
41
42typedef void (*DamageReportFunc) (DamagePtr pDamage, RegionPtr pRegion, void *closure);
43typedef void (*DamageDestroyFunc) (DamagePtr pDamage, void *closure);
44
45Bool
46DamageSetup (ScreenPtr pScreen);
47
48DamagePtr
49DamageCreate (DamageReportFunc damageReport,
50 DamageDestroyFunc damageDestroy,
51 DamageReportLevel damageLevel,
52 Bool isInternal,
53 ScreenPtr pScreen,
54 void * closure);
55
56void
57DamageDrawInternal (ScreenPtr pScreen, Bool enable);
58
59void
60DamageRegister (DrawablePtr pDrawable,
61 DamagePtr pDamage);
62
63void
64DamageUnregister (DrawablePtr pDrawable,
65 DamagePtr pDamage);
66
67void
68DamageDestroy (DamagePtr pDamage);
69
70Bool
71DamageSubtract (DamagePtr pDamage,
72 const RegionPtr pRegion);
73
74void
75DamageEmpty (DamagePtr pDamage);
76
77RegionPtr
78DamageRegion (DamagePtr pDamage);
79
80void
81DamageDamageRegion (DrawablePtr pDrawable,
82 const RegionPtr pRegion);
83
84void
85DamageSetReportAfterOp (DamagePtr pDamage, Bool reportAfter);
86
87#endif /* _DAMAGE_H_ */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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