~ubuntu-branches/ubuntu/karmic/virtualbox-ose/karmic-updates

« back to all changes in this revision

Viewing changes to src/VBox/Additions/x11/x11include/xorg-server-1.5.3/damagestr.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2009-09-14 18:25:07 UTC
  • mfrom: (0.4.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090914182507-c98g07mq16hjmn6d
Tags: 3.0.6-dfsg-1ubuntu1
* Merge from debian unstable (LP: #429697), remaining changes:
  - Enable DKMS support on virtualbox host and guest modules (LP: #267097)
    - Drop virtualbox-ose{-guest,}-modules-* package templates
    - Recommend *-source instead of *-modules packages
    - Replace error messages related to missing/mismatched
      kernel module accordingly
  - Autoload kernel module
    - LOAD_VBOXDRV_MODULE=1 in virtualbox-ose.default
  - Disable update action
    - patches/u01-disable-update-action.dpatch
  - Virtualbox should go in Accessories, not in System tools (LP: #288590)
    - virtualbox-ose-qt.files/virtualbox-ose.desktop
  - Add apport hook
    - virtualbox-ose.files/source_virtualbox-ose.py
    - virtualbox-ose.install
  - Add launchpad integration
    - control
    - lpi-bug.xpm
    - patches/u02-lp-integration.dpatch
  - virtualbox, virtualbox-* (names of the upstream proprietary packages)
    conflict with virtualbox-ose (LP: #379878)
* Make debug package depend on normal or guest utils package
* Drop patches/22-pulseaudio-stubs.dpatch (applied upstream)
* Rename Ubuntu specific patches to uXX-*.dpatch
* Fix lintian warnings in maintainer scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 _DAMAGESTR_H_
28
 
#define _DAMAGESTR_H_
29
 
 
30
 
#include "damage.h"
31
 
#include "gcstruct.h"
32
 
#include "privates.h"
33
 
#ifdef RENDER
34
 
# include "picturestr.h"
35
 
#endif
36
 
 
37
 
typedef struct _damage {
38
 
    DamagePtr           pNext;
39
 
    DamagePtr           pNextWin;
40
 
    RegionRec           damage;
41
 
    
42
 
    DamageReportLevel   damageLevel;
43
 
    Bool                isInternal;
44
 
    void                *closure;
45
 
    Bool                isWindow;
46
 
    DrawablePtr         pDrawable;
47
 
    
48
 
    DamageReportFunc    damageReport;
49
 
    DamageDestroyFunc   damageDestroy;
50
 
 
51
 
    Bool                reportAfter;
52
 
    RegionRec           pendingDamage;
53
 
} DamageRec;
54
 
 
55
 
typedef struct _damageScrPriv {
56
 
    int                         internalLevel;
57
 
 
58
 
    /*
59
 
     * For DDXen which don't provide GetScreenPixmap, this provides
60
 
     * a place to hook damage for windows on the screen
61
 
     */
62
 
    DamagePtr                   pScreenDamage;
63
 
 
64
 
    CopyWindowProcPtr           CopyWindow;
65
 
    CloseScreenProcPtr          CloseScreen;
66
 
    CreateGCProcPtr             CreateGC;
67
 
    DestroyPixmapProcPtr        DestroyPixmap;
68
 
    SetWindowPixmapProcPtr      SetWindowPixmap;
69
 
    DestroyWindowProcPtr        DestroyWindow;
70
 
#ifdef RENDER
71
 
    CompositeProcPtr            Composite;
72
 
    GlyphsProcPtr               Glyphs;
73
 
    AddTrapsProcPtr             AddTraps;
74
 
#endif
75
 
} DamageScrPrivRec, *DamageScrPrivPtr;
76
 
 
77
 
typedef struct _damageGCPriv {
78
 
    GCOps   *ops;
79
 
    GCFuncs *funcs;
80
 
} DamageGCPrivRec, *DamageGCPrivPtr;
81
 
 
82
 
/* XXX should move these into damage.c, damageScrPrivateIndex is static */
83
 
#define damageGetScrPriv(pScr) ((DamageScrPrivPtr) \
84
 
    dixLookupPrivate(&(pScr)->devPrivates, damageScrPrivateKey))
85
 
 
86
 
#define damageScrPriv(pScr) \
87
 
    DamageScrPrivPtr    pScrPriv = damageGetScrPriv(pScr)
88
 
 
89
 
#define damageGetPixPriv(pPix) \
90
 
    dixLookupPrivate(&(pPix)->devPrivates, damagePixPrivateKey)
91
 
 
92
 
#define damgeSetPixPriv(pPix,v) \
93
 
    dixSetPrivate(&(pPix)->devPrivates, damagePixPrivateKey, v)
94
 
 
95
 
#define damagePixPriv(pPix) \
96
 
    DamagePtr       pDamage = damageGetPixPriv(pPix)
97
 
 
98
 
#define damageGetGCPriv(pGC) \
99
 
    dixLookupPrivate(&(pGC)->devPrivates, damageGCPrivateKey)
100
 
 
101
 
#define damageGCPriv(pGC) \
102
 
    DamageGCPrivPtr  pGCPriv = damageGetGCPriv(pGC)
103
 
 
104
 
#define damageGetWinPriv(pWin) \
105
 
    ((DamagePtr)dixLookupPrivate(&(pWin)->devPrivates, damageWinPrivateKey))
106
 
 
107
 
#define damageSetWinPriv(pWin,d) \
108
 
    dixSetPrivate(&(pWin)->devPrivates, damageWinPrivateKey, d)
109
 
 
110
 
#endif /* _DAMAGESTR_H_ */