From: James Tabor Date: Fri, 23 Dec 2016 17:40:09 +0000 (+0000) Subject: [NtGDI] X-Git-Tag: ReactOS-0.4.4-FOSDEM2017~55 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=7f0fc1252d0e0d1fe7a30fb22190629b7cd5528c;hp=35f9007fc4a9e8689c36a93a86b9a90b07ea60af [NtGDI] - Turn off debug DC Bounds spam. svn path=/trunk/; revision=73481 --- diff --git a/reactos/win32ss/gdi/ntgdi/dcutil.c b/reactos/win32ss/gdi/ntgdi/dcutil.c index 578cd3bedc2..8ec7a8cfc5a 100644 --- a/reactos/win32ss/gdi/ntgdi/dcutil.c +++ b/reactos/win32ss/gdi/ntgdi/dcutil.c @@ -701,14 +701,14 @@ NtGdiGetBoundsRect( rc.top = max( rc.top, 0 ); rc.right = min( rc.right, rcRgn.right - rcRgn.left ); rc.bottom = min( rc.bottom, rcRgn.bottom - rcRgn.top ); - DPRINT1("Rao dc %p r %d b %d\n",pdc,rcRgn.right - rcRgn.left, rcRgn.bottom - rcRgn.top); - DPRINT1("rc l %d t %d\n",rc.left,rc.top); - DPRINT1(" r %d b %d\n",rc.right,rc.bottom); + DPRINT("Rao dc %p r %d b %d\n",pdc,rcRgn.right - rcRgn.left, rcRgn.bottom - rcRgn.top); + DPRINT("rc l %d t %d\n",rc.left,rc.top); + DPRINT(" r %d b %d\n",rc.right,rc.bottom); ret = DCB_SET; } IntDPtoLP( pdc, &rc, 2 ); - DPRINT1("rc1 l %d t %d\n",rc.left,rc.top); - DPRINT1(" r %d b %d\n",rc.right,rc.bottom); + DPRINT("rc1 l %d t %d\n",rc.left,rc.top); + DPRINT(" r %d b %d\n",rc.right,rc.bottom); } else rc = pdc->erclBounds; diff --git a/reactos/win32ss/gdi/ntgdi/line.c b/reactos/win32ss/gdi/ntgdi/line.c index 2067103c0ab..01270910387 100644 --- a/reactos/win32ss/gdi/ntgdi/line.c +++ b/reactos/win32ss/gdi/ntgdi/line.c @@ -59,8 +59,8 @@ AddPenLinesBounds(PDC dc, int count, POINT *points) points++; } - DPRINT1("APLB dc %p l %d t %d\n",dc,rect.left,rect.top); - DPRINT1(" r %d b %d\n",rect.right,rect.bottom); + DPRINT("APLB dc %p l %d t %d\n",dc,rect.left,rect.top); + DPRINT(" r %d b %d\n",rect.right,rect.bottom); { RECTL rcRgn;