mirror of
https://github.com/reactos/reactos.git
synced 2025-03-01 03:45:16 +00:00
[WIN32SS:ENG:GDI] bitblt(_new).c: Use correct debug channel "GdiBlt"
This commit is contained in:
parent
05c3f303bf
commit
e16dc27e47
2 changed files with 8 additions and 10 deletions
|
@ -1,7 +1,7 @@
|
|||
|
||||
#include <win32k.h>
|
||||
#include "../diblib/DibLib_interface.h"
|
||||
DBG_DEFAULT_CHANNEL(GdiFont);
|
||||
DBG_DEFAULT_CHANNEL(GdiBlt);
|
||||
|
||||
#define SURFOBJ_flags(pso) (CONTAINING_RECORD(pso, SURFACE, SurfObj)->flags)
|
||||
|
||||
|
|
|
@ -7,8 +7,6 @@
|
|||
*/
|
||||
|
||||
#include <win32k.h>
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
DBG_DEFAULT_CHANNEL(GdiBlt);
|
||||
|
||||
BOOL APIENTRY
|
||||
|
@ -491,11 +489,11 @@ NtGdiMaskBlt(
|
|||
XlateObj = &exlo.xlo;
|
||||
}
|
||||
|
||||
DPRINT("DestRect: (%d,%d)-(%d,%d) and SourcePoint is (%d,%d)\n",
|
||||
TRACE("DestRect: (%d,%d)-(%d,%d) and SourcePoint is (%d,%d)\n",
|
||||
DestRect.left, DestRect.top, DestRect.right, DestRect.bottom,
|
||||
SourcePoint.x, SourcePoint.y);
|
||||
|
||||
DPRINT("nWidth is '%d' and nHeight is '%d'.\n", nWidth, nHeight);
|
||||
TRACE("nWidth is '%d' and nHeight is '%d'.\n", nWidth, nHeight);
|
||||
|
||||
/* Fix BitBlt so that it will not flip left to right */
|
||||
if ((DestRect.left > DestRect.right) && (nWidth < 0))
|
||||
|
@ -767,7 +765,7 @@ GreStretchBltMask(
|
|||
MaskPoint.y += DCMask->ptlDCOrig.y;
|
||||
}
|
||||
|
||||
DPRINT("Calling IntEngStrethBlt SourceRect: (%d,%d)-(%d,%d) and DestRect: (%d,%d)-(%d,%d).\n",
|
||||
TRACE("Calling IntEngStrethBlt SourceRect: (%d,%d)-(%d,%d) and DestRect: (%d,%d)-(%d,%d).\n",
|
||||
SourceRect.left, SourceRect.top, SourceRect.right, SourceRect.bottom,
|
||||
DestRect.left, DestRect.top, DestRect.right, DestRect.bottom);
|
||||
|
||||
|
|
Loading…
Reference in a new issue