diff options
Diffstat (limited to 'xorg-server/hw/xwin/wingetsp.c')
-rw-r--r-- | xorg-server/hw/xwin/wingetsp.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/xorg-server/hw/xwin/wingetsp.c b/xorg-server/hw/xwin/wingetsp.c index 049e2c939..1076b5cc5 100644 --- a/xorg-server/hw/xwin/wingetsp.c +++ b/xorg-server/hw/xwin/wingetsp.c @@ -57,9 +57,7 @@ winGetSpansNativeGDI(DrawablePtr pDrawable, /* Branch on the drawable type */ switch (pDrawable->type) { case DRAWABLE_PIXMAP: -#if 0 - ErrorF("winGetSpans - DRAWABLE_PIXMAP %08x\n", pDrawable); -#endif + winDebug ("winGetSpans - DRAWABLE_PIXMAP %08x\n", pDrawable); pPixmap = (PixmapPtr) pDrawable; pPixmapPriv = winGetPixmapPriv(pPixmap); @@ -98,12 +96,6 @@ winGetSpansNativeGDI(DrawablePtr pDrawable, SelectObject(hdcMem, hbmpOrig); DeleteObject(hbmpWindow); -#if 0 - ErrorF("(%dx%dx%d) (%d,%d) w: %d\n", - pDrawable->width, pDrawable->height, pDrawable->depth, - pPoint->x, pPoint->y, *piWidth); -#endif - /* Calculate offset of next bit destination */ pDst += PixmapBytePad(*piWidth, pDrawable->depth); } @@ -117,9 +109,6 @@ winGetSpansNativeGDI(DrawablePtr pDrawable, break; case DRAWABLE_WINDOW: -#if 0 - ErrorF("winGetSpans - DRAWABLE_WINDOW\n"); -#endif /* Open a memory HDC */ hdcMem = CreateCompatibleDC(NULL); @@ -150,12 +139,6 @@ winGetSpansNativeGDI(DrawablePtr pDrawable, DeleteObject(hbmpWindow); -#if 0 - ErrorF("(%dx%dx%d) (%d,%d) w: %d\n", - pDrawable->width, pDrawable->height, pDrawable->depth, - pPoint->x, pPoint->y, *piWidth); -#endif - /* Calculate offset of next bit destination */ pDst += PixmapBytePad(*piWidth, pDrawable->depth); } |