Changeset 4676 for trunk/src/gdi32/blit.cpp
- Timestamp:
- Nov 22, 2000, 10:03:53 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/blit.cpp
r4533 r4676 1 /* $Id: blit.cpp,v 1.2 0 2000-10-26 17:20:28sandervl Exp $ */1 /* $Id: blit.cpp,v 1.21 2000-11-22 21:03:53 sandervl Exp $ */ 2 2 3 3 /* … … 34 34 BOOL rc; 35 35 36 dprintf(("GDI32: StretchBlt Dest: %x (%d, %d) size (%d, %d) \n",37 hdcDest, nXOriginDest, nYOriginDest, nWidthDest, nHeightDest ));36 dprintf(("GDI32: StretchBlt Dest: %x (%d, %d) size (%d, %d) ROP %x", 37 hdcDest, nXOriginDest, nYOriginDest, nWidthDest, nHeightDest, dwRop)); 38 38 dprintf(("GDI32: StretchBlt Src : %x (%d, %d) size (%d, %d)\n", 39 39 hdcSrc, nXOriginSrc, nYOriginSrc, nWidthSrc, nHeightSrc)); … … 251 251 252 252 dprintf(("GDI32: StretchDIBits %x to (%d,%d) (%d,%d) from (%d,%d) (%d,%d), %x %x %x %x", hdc, xDst, yDst, widthDst, heightDst, xSrc, ySrc, widthSrc, heightSrc, bits, info, wUsage, dwRop)); 253 254 if(info->bmiHeader.biBitCount == 1) { 255 dprintf(("WARNING: StretchDIBits does NOT work correctly for 1 bpp bitmaps!!")); 256 } 253 257 254 258 if(wUsage == DIB_PAL_COLORS && info->bmiHeader.biSize == sizeof(BITMAPINFOHEADER))
Note:
See TracChangeset
for help on using the changeset viewer.