From: Michel Dänzer Date: Tue, 18 May 2010 15:14:47 +0000 (+0200) Subject: st/xorg: Don't advertise DRI2 version we don't actually support yet. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b0ba8d6f807543d461272833a76059fed8a4d6e9;p=mesa.git st/xorg: Don't advertise DRI2 version we don't actually support yet. Fixes DRI2 initialization with current xserver Git. --- diff --git a/src/gallium/state_trackers/xorg/xorg_dri2.c b/src/gallium/state_trackers/xorg/xorg_dri2.c index b90f9c908d2..921b6900fcd 100644 --- a/src/gallium/state_trackers/xorg/xorg_dri2.c +++ b/src/gallium/state_trackers/xorg/xorg_dri2.c @@ -403,7 +403,7 @@ xorg_dri2_init(ScreenPtr pScreen) } #endif - dri2info.version = DRI2INFOREC_VERSION; + dri2info.version = min(DRI2INFOREC_VERSION, 3); dri2info.fd = ms->fd; dri2info.driverName = pScrn->driverName;