summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTilman Sauerbeck <tilman@code-monkey.de>2007-03-30 20:47:14 +0200
committerTilman Sauerbeck <tilman@code-monkey.de>2007-03-30 20:47:14 +0200
commit920b84364a374ac8cde9314efc6742c11a72ce4f (patch)
tree9c5b9d0bfa31661f362fc4cb7fd45824a1ef3735
parentd1696d91d9da79c40b0576b3ce754dc8a6666117 (diff)
Removed the debug messages for solid and copy ops.
-rw-r--r--src/mga_exa.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mga_exa.c b/src/mga_exa.c
index 7a12a9a..b22716d 100644
--- a/src/mga_exa.c
+++ b/src/mga_exa.c
@@ -227,11 +227,6 @@ mgaPrepareCopy(PixmapPtr pSrc, PixmapPtr pDst, int xdir, int ydir, int alu,
*/
QUIESCE_DMA(pSrc);
- DEBUG_MSG(("s: %x@%x d: %x@%x xdir %d ydir %d alu %d pm %d\n",
- exaGetPixmapOffset(pSrc), exaGetPixmapPitch(pSrc),
- exaGetPixmapOffset(pDst), exaGetPixmapPitch(pDst),
- xdir, ydir, alu, planemask));
-
if (xdir < 0)
blit_direction |= BLIT_LEFT;
@@ -261,8 +256,6 @@ mgaCopy(PixmapPtr pDst, int srcx, int srcy, int dstx, int dsty, int w, int h)
PMGA(pDst);
int start, end;
- DEBUG_MSG((" %d,%d -> %d,%d %dx%d\n", srcx, srcy, dstx,dsty, w, h));
-
w--;
if (pMga->BltScanDirection & BLIT_UP) {
@@ -277,9 +270,6 @@ mgaCopy(PixmapPtr pDst, int srcx, int srcy, int dstx, int dsty, int w, int h)
else
end += w;
- DEBUG_MSG((" end %d start %d dstx %d dsty %d w %d h %d\n",
- end, start, dstx, dsty, w, h));
-
WAITFIFO(4);
OUTREG(MGAREG_AR0, end);
OUTREG(MGAREG_AR3, start);