diff options
author | Lukas Hejtmanek <xhejtman@ics.muni.cz> | 2008-10-07 15:07:08 +0200 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2008-10-07 10:27:03 -0700 |
commit | 111dd151dedf535464d638461f9485ec2939780e (patch) | |
tree | f1db6f39a5cf246c87bd00c04dee95faeaf52a70 | |
parent | 3a4151b69daa478ac6edf042d604ee41e8429c0d (diff) | |
download | xf86-video-intel-frc-111dd151dedf535464d638461f9485ec2939780e.tar.gz xf86-video-intel-frc-111dd151dedf535464d638461f9485ec2939780e.tar.bz2 |
Fix driver build against server master.
Broken by 3a4151b69daa478ac6edf042d604ee41e8429c0d
-rw-r--r-- | src/i830_exa.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/i830_exa.c b/src/i830_exa.c index e03f2de1..86231595 100644 --- a/src/i830_exa.c +++ b/src/i830_exa.c @@ -726,6 +726,10 @@ I830EXAInit(ScreenPtr pScreen) return TRUE; } +#ifdef I830_USE_UXA +static int uxa_pixmap_index; +#endif + dri_bo * i830_get_pixmap_bo(PixmapPtr pixmap) { @@ -750,7 +754,6 @@ i830_get_pixmap_bo(PixmapPtr pixmap) } #if defined(I830_USE_UXA) -static int uxa_pixmap_index; static void i830_uxa_set_pixmap_bo (PixmapPtr pixmap, dri_bo *bo) |