Author: jimtabor
Date: Fri Dec 23 17:40:09 2016
New Revision: 73481
URL:
http://svn.reactos.org/svn/reactos?rev=73481&view=rev
Log:
[NtGDI]
- Turn off debug DC Bounds spam.
Modified:
trunk/reactos/win32ss/gdi/ntgdi/dcutil.c
trunk/reactos/win32ss/gdi/ntgdi/line.c
Modified: trunk/reactos/win32ss/gdi/ntgdi/dcutil.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/gdi/ntgdi/dcutil.c…
==============================================================================
--- trunk/reactos/win32ss/gdi/ntgdi/dcutil.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/gdi/ntgdi/dcutil.c [iso-8859-1] Fri Dec 23 17:40:09 2016
@@ -701,14 +701,14 @@
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;
Modified: trunk/reactos/win32ss/gdi/ntgdi/line.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/gdi/ntgdi/line.c?r…
==============================================================================
--- trunk/reactos/win32ss/gdi/ntgdi/line.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/gdi/ntgdi/line.c [iso-8859-1] Fri Dec 23 17:40:09 2016
@@ -59,8 +59,8 @@
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;