summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephane Marchesin <marchesin@icps.u-strasbg.fr>2007-08-06 18:27:19 +0200
committerStephane Marchesin <marchesin@icps.u-strasbg.fr>2007-08-06 18:27:19 +0200
commitbf5684ba05e50fe48cce1e634caf03725fa907e6 (patch)
treeaac57eb640a3a4d36bfff979f395dbb96a054f16
parent2eab8453d73b4e7fd6c2d772d595ca5e8fa8c975 (diff)
downloadxorg-driver-xf86-video-nouveau-bf5684ba05e50fe48cce1e634caf03725fa907e6.tar.gz
oops remove the debugging ErrorFs.
-rw-r--r--src/nv_exa.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nv_exa.c b/src/nv_exa.c
index a2ca92f..8e1170c 100644
--- a/src/nv_exa.c
+++ b/src/nv_exa.c
@@ -451,14 +451,12 @@ static Bool NVUploadToScreen(PixmapPtr pDst,
cpp = pDst->drawable.bitsPerPixel >> 3;
if (pNv->GARTScratch) {
- ErrorF("in UTSGart (%dx%d)\n",w,h);
dst_offset += (y * dst_pitch) + (x * cpp);
if (NVAccelUploadM2MF(pScrn, dst_offset, src, dst_pitch,
src_pitch, w * cpp, h))
return TRUE;
}
- ErrorF("in UTSMemcpy (%dx%d)\n",w,h);
dst = pDst->devPrivate.ptr + (y * dst_pitch) + (x * cpp);
exaWaitSync(pDst->drawable.pScreen);
if (NVAccelMemcpyRect(dst, src, h, dst_pitch, src_pitch, w*cpp))