diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2008-08-26 22:24:36 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2008-08-26 22:34:05 -0400 |
commit | 808b72f81454061c815321e51a9b9f925c4bf786 (patch) | |
tree | f2bd7fbc769c149b04d996616d02c67c6d335dcc /uxa | |
parent | 62ce9e8f9c8cc2014645d58f4249c496aebc36e8 (diff) |
Change uxa private keys to integer variables.
Prepares for a devPrivates system that will store an index.
Diffstat (limited to 'uxa')
-rw-r--r-- | uxa/uxa-priv.h | 4 | ||||
-rw-r--r-- | uxa/uxa.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/uxa/uxa-priv.h b/uxa/uxa-priv.h index c50ab3af..13535876 100644 --- a/uxa/uxa-priv.h +++ b/uxa/uxa-priv.h @@ -155,8 +155,8 @@ typedef struct { (PixmapWidthPaddingInfo[d].padRoundUp+1))) #endif -extern DevPrivateKey uxa_screen_key; -#define uxa_get_screen(s) ((uxa_screen_t *)dixLookupPrivate(&(s)->devPrivates, uxa_screen_key)) +extern int uxa_screen_index; +#define uxa_get_screen(s) ((uxa_screen_t *)dixLookupPrivate(&(s)->devPrivates, &uxa_screen_index)) /** Align an offset to an arbitrary alignment */ #define UXA_ALIGN(offset, align) (((offset) + (align) - 1) - \ @@ -39,7 +39,7 @@ #include "dixfontstr.h" #include "uxa.h" -DevPrivateKey uxa_screen_key = &uxa_screen_key; +int uxa_screen_index; /** * uxa_get_drawable_pixmap() returns a backing pixmap for a given drawable. @@ -422,7 +422,7 @@ uxa_driver_init(ScreenPtr screen, uxa_driver_t *uxa_driver) uxa_screen->info = uxa_driver; - dixSetPrivate(&screen->devPrivates, uxa_screen_key, uxa_screen); + dixSetPrivate(&screen->devPrivates, &uxa_screen_index, uxa_screen); // exaDDXDriverInit(screen); |