There was a check to avoid smashing custom functions, but the sense was backwards causing it to always smash them, and also not set them otherwise.
Signed-off-by: Keith Packard <[email protected]> --- miext/sync/misync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miext/sync/misync.c b/miext/sync/misync.c index b6914d1..f380547 100644 --- a/miext/sync/misync.c +++ b/miext/sync/misync.c @@ -190,7 +190,7 @@ miSyncSetup(ScreenPtr pScreen) pScreenPriv = SYNC_SCREEN_PRIV(pScreen); - if (pScreenPriv->funcs.CreateFence) { + if (!pScreenPriv->funcs.CreateFence) { pScreenPriv->funcs = miSyncScreenFuncs; /* Wrap CloseScreen to clean up */ -- 1.8.4.rc3 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
