diff options
author | Tilman Sauerbeck <tilman@code-monkey.de> | 2006-09-07 17:21:52 +0200 |
---|---|---|
committer | Tilman Sauerbeck <tilman@code-monkey.de> | 2006-09-07 17:21:52 +0200 |
commit | 4ed932caa27df8c6a4c58478d3f9b45815de06f5 (patch) | |
tree | b148e533a14479ab705f4d9413e80cc3731750d2 | |
parent | 3b06475096238b3adc3151f27a92d7a8dbbb0231 (diff) |
Moved some FIXMEs.
-rw-r--r-- | src/mga_exa.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mga_exa.c b/src/mga_exa.c index ded7a35..c37e632 100644 --- a/src/mga_exa.c +++ b/src/mga_exa.c @@ -56,7 +56,6 @@ #define PMGA(x) \ MGAPtr pMga = xf86Screens[x->drawable.pScreen->myNum]->driverPrivate; -/* FIXME: is this correct? */ #define QUIESCE_DMA(x) \ CHECK_DMA_QUIESCENT(pMga, xf86Screens[x->drawable.pScreen->myNum]); @@ -194,6 +193,10 @@ static Bool mgaPrepareSolid(PixmapPtr pPixmap, int alu, Pixel planemask, Pixel fg) { PMGA(pPixmap); + + /* FIXME + * Is this needed here? We don't use DMA stuff here... + */ QUIESCE_DMA(pPixmap); /* We must pad planemask and fg depending on the format of the @@ -242,6 +245,9 @@ mgaPrepareCopy(PixmapPtr pSrc, PixmapPtr pDst, int xdir, int ydir, int alu, int blit_direction = 0; int dwgctl = 0; + /* FIXME + * Is this needed here? We don't use DMA stuff here... + */ QUIESCE_DMA(pSrc); DEBUG_MSG(("s: %x@%x d: %x@%x xdir %d ydir %d alu %d pm %d\n", |