From: Dave Airlie Date: Thu, 5 May 2011 06:23:46 +0000 (+1000) Subject: Revert "DRI2/GLX: make swap event handling match spec" X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dc4a3edcf9d414d5098618d5d3b79d8dd90adcc3;p=mesa.git Revert "DRI2/GLX: make swap event handling match spec" This reverts commit 70227e21bbd4411956ceeb5039640140e64a11a8. revert this until we sort things out, with a new glproto release with compatible struct names. --- diff --git a/configure.ac b/configure.ac index 7bd1f2e21c0..54d9c296862 100644 --- a/configure.ac +++ b/configure.ac @@ -21,8 +21,8 @@ dnl Versions for external dependencies LIBDRM_REQUIRED=2.4.24 LIBDRM_RADEON_REQUIRED=2.4.24 LIBDRM_INTEL_REQUIRED=2.4.24 -DRI2PROTO_REQUIRED=2.4 -GLPROTO_REQUIRED=1.4.13 +DRI2PROTO_REQUIRED=2.1 +GLPROTO_REQUIRED=1.4.11 LIBDRM_XORG_REQUIRED=2.4.24 LIBKMS_XORG_REQUIRED=1.0.0 diff --git a/src/glx/dri2.c b/src/glx/dri2.c index 2f18ca0f1f2..adfd3d1f7c8 100644 --- a/src/glx/dri2.c +++ b/src/glx/dri2.c @@ -124,7 +124,7 @@ DRI2WireToEvent(Display *dpy, XEvent *event, xEvent *wire) } aevent->ust = ((CARD64)awire->ust_hi << 32) | awire->ust_lo; aevent->msc = ((CARD64)awire->msc_hi << 32) | awire->msc_lo; - aevent->sbc = awire->sbc; + aevent->sbc = ((CARD64)awire->sbc_hi << 32) | awire->sbc_lo; return True; } #endif diff --git a/src/glx/glxext.c b/src/glx/glxext.c index 831d83f1b1c..278c71978fa 100644 --- a/src/glx/glxext.c +++ b/src/glx/glxext.c @@ -138,7 +138,7 @@ __glXWireToEvent(Display *dpy, XEvent *event, xEvent *wire) aevent->drawable = awire->drawable; aevent->ust = ((CARD64)awire->ust_hi << 32) | awire->ust_lo; aevent->msc = ((CARD64)awire->msc_hi << 32) | awire->msc_lo; - aevent->sbc = awire->sbc; + aevent->sbc = ((CARD64)awire->sbc_hi << 32) | awire->sbc_lo; return True; } default: