Changeset 4533 for trunk/src/gdi32/blit.cpp
- Timestamp:
- Oct 26, 2000, 7:20:29 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/blit.cpp
r4356 r4533 1 /* $Id: blit.cpp,v 1. 19 2000-10-01 21:21:15 phallerExp $ */1 /* $Id: blit.cpp,v 1.20 2000-10-26 17:20:28 sandervl Exp $ */ 2 2 3 3 /* … … 85 85 } 86 86 } 87 dprintf(("GDI32: BitBlt to hdc %X from (%d,%d) to (%d,%d), (%d,%d) rop %X\n",88 hdcDest, nXSrc, nYSrc, nXDest, nYDest, nWidth, nHeight, dwRop));87 dprintf(("GDI32: BitBlt to hdc %X from hdc %x (%d,%d) to (%d,%d), (%d,%d) rop %X\n", 88 hdcDest, hdcSrc, nXSrc, nYSrc, nXDest, nYDest, nWidth, nHeight, dwRop)); 89 89 return O32_BitBlt(hdcDest, nXDest, nYDest, nWidth, nHeight, hdcSrc, nXSrc, nYSrc, dwRop); 90 90 } … … 100 100 ULONG compression = 0, iHeight, bmpsize; 101 101 WORD *newbits = 0; 102 103 dprintf(("GDI32: SetDIBitsToDevice hdc:%X xDest:%d yDest:%d, cx:%d, cy:%d, xSrc:%d, ySrc:%d, startscan:%d, lines:%d \nGDI32: bits 0x%X, info 0x%X, coloruse %d", 104 hdc, xDest, yDest, cx, cy, xSrc, ySrc, startscan, lines, (LPVOID) bits, (PBITMAPINFO)info, coloruse)); 102 105 103 106 SetLastError(ERROR_SUCCESS);
Note:
See TracChangeset
for help on using the changeset viewer.