diff options
author | Ian Romanick <idr@us.ibm.com> | 2004-06-07 20:18:43 +0000 |
---|---|---|
committer | Ian Romanick <idr@us.ibm.com> | 2004-06-07 20:18:43 +0000 |
commit | 03d7596b84bbe1e913206ebca91b9d05ed57e0ab (patch) | |
tree | 4dc3128ce7de83aa3433b5df2152e9f01804a407 /src/mesa/drivers/dri/i830/i830_screen.c | |
parent | 635ba1565cfbb02fbdd19de72651dbda9bb3c3b3 (diff) | |
download | external_mesa3d-03d7596b84bbe1e913206ebca91b9d05ed57e0ab.zip external_mesa3d-03d7596b84bbe1e913206ebca91b9d05ed57e0ab.tar.gz external_mesa3d-03d7596b84bbe1e913206ebca91b9d05ed57e0ab.tar.bz2 |
The required DDX and DRI version numbers were switched. This went unnoticed
on several drivers (i.e., R200, Radeon, R128, Unichrome) becuase the
required DRI and DDX versions were 4.0.0. Mach64 was already fixed.
Diffstat (limited to 'src/mesa/drivers/dri/i830/i830_screen.c')
-rw-r--r-- | src/mesa/drivers/dri/i830/i830_screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i830/i830_screen.c b/src/mesa/drivers/dri/i830/i830_screen.c index da4c94d..5a6a49e 100644 --- a/src/mesa/drivers/dri/i830/i830_screen.c +++ b/src/mesa/drivers/dri/i830/i830_screen.c @@ -544,8 +544,8 @@ void * __driCreateNewScreen( __DRInativeDisplay *dpy, int scrn, __DRIscreen *psc { __DRIscreenPrivate *psp; - static const __DRIversion ddx_expected = { 4, 0, 0 }; - static const __DRIversion dri_expected = { 1, 0, 0 }; + static const __DRIversion ddx_expected = { 1, 0, 0 }; + static const __DRIversion dri_expected = { 4, 0, 0 }; static const __DRIversion drm_expected = { 1, 3, 0 }; if ( ! driCheckDriDdxDrmVersions2( "i830", |