summaryrefslogtreecommitdiff
path: root/src/atimach64io.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/atimach64io.h')
-rw-r--r--src/atimach64io.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/atimach64io.h b/src/atimach64io.h
index 80553f8..caff26d 100644
--- a/src/atimach64io.h
+++ b/src/atimach64io.h
@@ -236,7 +236,7 @@ do { \
* Set upon DRISwapContext and when DRI accesses the GPU engine
* from within the server, see DRIInitBuffers/DRIMoveBuffers.
*
- * Forces the EXA/XAA software paths to sync before accessing the FB memory.
+ * Forces the EXA software paths to sync before accessing the FB memory.
*/
static __inline__ void ATIDRIMarkSyncInt(ScrnInfoPtr _pScrInfo)
{
@@ -245,16 +245,12 @@ static __inline__ void ATIDRIMarkSyncInt(ScrnInfoPtr _pScrInfo)
if (_pATI->useEXA)
exaMarkSync(_pScrInfo->pScreen);
#endif
-#ifdef USE_XAA
- if (!_pATI->useEXA)
- SET_SYNC_FLAG(_pATI->pXAAInfo); /* NeedToSync = TRUE */
-#endif
}
/*
* Set upon DRISwapContext and when the server acquires the DRI lock.
*
- * Forces the EXA/XAA accelerated paths to sync before accessing the GPU engine.
+ * Forces the EXA accelerated paths to sync before accessing the GPU engine.
*/
static __inline__ void ATIDRIMarkSyncExt(ScrnInfoPtr _pScrInfo)
{
@@ -271,12 +267,6 @@ static __inline__ void ATIDRISync(ScrnInfoPtr _pScrInfo)
if (_pATI->NeedDRISync) exaWaitSync(_pScrInfo->pScreen);
}
#endif
-#ifdef USE_XAA
- if (_pATI->directRenderingEnabled && _pATI->pXAAInfo)
- {
- if (_pATI->NeedDRISync) (*_pATI->pXAAInfo->Sync)(_pScrInfo);
- }
-#endif
}
#define ATIDRILock(_pScrInfo) \