diff options
author | Tomas Carnecky <tom@dbservice.com> | 2008-08-28 18:05:40 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2008-08-28 18:05:40 -0400 |
commit | ebea78cdba0ff14a397239ee1936bd254c181e1b (patch) | |
tree | 3937720753cc112aaf9eb71ba0dcb39674362b98 /miext | |
parent | ec7907f8fa04dcff2649cc4846975844314f737e (diff) |
Prepare for array-index based devPrivates.
TODO: static indices can be made just an int; some indices
can be combined.
Diffstat (limited to 'miext')
-rw-r--r-- | miext/cw/cw.c | 12 | ||||
-rwxr-xr-x | miext/damage/damage.c | 12 | ||||
-rw-r--r-- | miext/rootless/rootlessScreen.c | 12 | ||||
-rw-r--r-- | miext/shadow/shadow.c | 3 |
4 files changed, 26 insertions, 13 deletions
diff --git a/miext/cw/cw.c b/miext/cw/cw.c index efb046948..56066fe9c 100644 --- a/miext/cw/cw.c +++ b/miext/cw/cw.c @@ -43,11 +43,15 @@ #define CW_ASSERT(x) do {} while (0) #endif -DevPrivateKey cwGCKey = &cwGCKey; -DevPrivateKey cwScreenKey = &cwScreenKey; -DevPrivateKey cwWindowKey = &cwWindowKey; +static int cwGCKeyIndex; +DevPrivateKey cwGCKey = &cwGCKeyIndex; +static int cwScreenKeyIndex; +DevPrivateKey cwScreenKey = &cwScreenKeyIndex; +static int cwWindowKeyIndex; +DevPrivateKey cwWindowKey = &cwWindowKeyIndex; #ifdef RENDER -DevPrivateKey cwPictureKey = &cwPictureKey; +static int cwPictureKeyIndex; +DevPrivateKey cwPictureKey = &cwPictureKeyIndex; #endif extern GCOps cwGCOps; diff --git a/miext/damage/damage.c b/miext/damage/damage.c index 56864c56d..5000a824f 100755 --- a/miext/damage/damage.c +++ b/miext/damage/damage.c @@ -70,10 +70,14 @@ #define pixmapDamage(pPixmap) damagePixPriv(pPixmap) -static DevPrivateKey damageScrPrivateKey = &damageScrPrivateKey; -static DevPrivateKey damagePixPrivateKey = &damagePixPrivateKey; -static DevPrivateKey damageGCPrivateKey = &damageGCPrivateKey; -static DevPrivateKey damageWinPrivateKey = &damageWinPrivateKey; +static int damageScrPrivateKeyIndex; +static DevPrivateKey damageScrPrivateKey = &damageScrPrivateKeyIndex; +static int damagePixPrivateKeyIndex; +static DevPrivateKey damagePixPrivateKey = &damagePixPrivateKeyIndex; +static int damageGCPrivateKeyIndex; +static DevPrivateKey damageGCPrivateKey = &damageGCPrivateKeyIndex; +static int damageWinPrivateKeyIndex; +static DevPrivateKey damageWinPrivateKey = &damageWinPrivateKeyIndex; static DamagePtr * getDrawableDamageRef (DrawablePtr pDrawable) diff --git a/miext/rootless/rootlessScreen.c b/miext/rootless/rootlessScreen.c index 8eaacca0b..421c03c00 100644 --- a/miext/rootless/rootlessScreen.c +++ b/miext/rootless/rootlessScreen.c @@ -62,10 +62,14 @@ extern int RootlessMiValidateTree(WindowPtr pRoot, WindowPtr pChild, extern Bool RootlessCreateGC(GCPtr pGC); // Initialize globals -DevPrivateKey rootlessGCPrivateKey = &rootlessGCPrivateKey; -DevPrivateKey rootlessScreenPrivateKey = &rootlessScreenPrivateKey; -DevPrivateKey rootlessWindowPrivateKey = &rootlessWindowPrivateKey; -DevPrivateKey rootlessWindowOldPixmapPrivateKey = &rootlessWindowOldPixmapPrivateKey; +static int rootlessGCPrivateKeyIndex; +DevPrivateKey rootlessGCPrivateKey = &rootlessGCPrivateKeyIndex; +static int rootlessScreenPrivateKeyIndex; +DevPrivateKey rootlessScreenPrivateKey = &rootlessScreenPrivateKeyIndex; +static int rootlessWindowPrivateKeyIndex; +DevPrivateKey rootlessWindowPrivateKey = &rootlessWindowPrivateKeyIndex; +static int rootlessWindowOldPixmapPrivateKeyIndex; +DevPrivateKey rootlessWindowOldPixmapPrivateKey = &rootlessWindowOldPixmapPrivateKeyIndex; /* diff --git a/miext/shadow/shadow.c b/miext/shadow/shadow.c index ef0df4091..21f1de2d5 100644 --- a/miext/shadow/shadow.c +++ b/miext/shadow/shadow.c @@ -36,7 +36,8 @@ #include "gcstruct.h" #include "shadow.h" -DevPrivateKey shadowScrPrivateKey = &shadowScrPrivateKey; +static int shadowScrPrivateKeyIndex; +DevPrivateKey shadowScrPrivateKey = &shadowScrPrivateKeyIndex; #define wrap(priv, real, mem) {\ priv->mem = real->mem; \ |