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 /src/i830_exa.c | |
parent | 62ce9e8f9c8cc2014645d58f4249c496aebc36e8 (diff) |
Change uxa private keys to integer variables.
Prepares for a devPrivates system that will store an index.
Diffstat (limited to 'src/i830_exa.c')
-rw-r--r-- | src/i830_exa.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/i830_exa.c b/src/i830_exa.c index fdce65f6..fd29df11 100644 --- a/src/i830_exa.c +++ b/src/i830_exa.c @@ -726,12 +726,12 @@ I830EXAInit(ScreenPtr pScreen) return TRUE; } -static DevPrivateKey uxa_pixmap_key = &uxa_pixmap_key; +static int uxa_pixmap_index; static void i830_uxa_set_pixmap_bo (PixmapPtr pixmap, dri_bo *bo) { - dixSetPrivate(&pixmap->devPrivates, uxa_pixmap_key, bo); + dixSetPrivate(&pixmap->devPrivates, &uxa_pixmap_index, bo); } dri_bo * @@ -742,7 +742,7 @@ i830_get_pixmap_bo(PixmapPtr pixmap) I830Ptr i830 = I830PTR(scrn); if (i830->accel == ACCEL_UXA) { - return dixLookupPrivate(&pixmap->devPrivates, uxa_pixmap_key); + return dixLookupPrivate(&pixmap->devPrivates, &uxa_pixmap_index); } else if (i830->accel == ACCEL_EXA) { struct i830_exa_pixmap_priv *driver_priv = exaGetPixmapDriverPrivate(pixmap); @@ -874,7 +874,7 @@ i830_uxa_init (ScreenPtr pScreen) ScrnInfoPtr scrn = xf86Screens[pScreen->myNum]; I830Ptr i830 = I830PTR(scrn); - if (!dixRequestPrivate(uxa_pixmap_key, 0)) + if (!dixRequestPrivate(&uxa_pixmap_index, 0)) return FALSE; i830->uxa_driver = uxa_driver_alloc(); |