From 398447c041cffdc712a86f9fe9b58c3f5189c86e Mon Sep 17 00:00:00 2001 From: Tilman Sauerbeck Date: Thu, 10 Aug 2006 21:31:49 +0200 Subject: Call exaMarkSync() where we'd set the NeedToSync flag for XAA. --- src/mga_dri.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'src/mga_dri.c') diff --git a/src/mga_dri.c b/src/mga_dri.c index d704089..78b20b6 100644 --- a/src/mga_dri.c +++ b/src/mga_dri.c @@ -431,11 +431,14 @@ static void MGASwapContext( ScreenPtr pScreen ) */ pMga->haveQuiescense = 0; - /* FIXME what about EXA? */ #ifdef USE_XAA if (!pMga->Exa && pMga->AccelInfoRec) pMga->AccelInfoRec->NeedToSync = TRUE; #endif +#ifdef USE_EXA + if (pMga->Exa) + exaMarkSync(pScreen); +#endif } static void MGASwapContextShared( ScreenPtr pScreen ) @@ -449,7 +452,6 @@ static void MGASwapContextShared( ScreenPtr pScreen ) pMga->haveQuiescense = pMGA2->haveQuiescense = 0; - /* FIXME what about EXA? */ #ifdef USE_XAA if (!pMga->Exa && pMga->AccelInfoRec) pMga->AccelInfoRec->NeedToSync = TRUE; @@ -457,6 +459,13 @@ static void MGASwapContextShared( ScreenPtr pScreen ) if (!pMGA2->Exa && pMGA2->AccelInfoRec) pMGA2->AccelInfoRec->NeedToSync = TRUE; #endif +#ifdef USE_EXA + if (pMga->Exa) + exaMarkSync(pScrn->pScreen); + + if (pMGA2->Exa) + exaMarkSync(pMGAEnt->pScrn_2->pScreen); +#endif } /* FIXME: This comment is out of date, since we aren't overriding -- cgit v1.2.3