Changeset 1686 for trunk/src/gdi32/dibsect.cpp
- Timestamp:
- Nov 10, 1999, 3:15:23 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/dibsect.cpp
r1533 r1686 1 /* $Id: dibsect.cpp,v 1. 6 1999-10-31 21:38:15 achimhaExp $ */1 /* $Id: dibsect.cpp,v 1.7 1999-11-10 14:15:23 sandervl Exp $ */ 2 2 3 3 /* … … 148 148 //****************************************************************************** 149 149 #if 1 150 BOOL DIBSection::BitBlt(HDC hdcDest, HWND hwndDest,int nXdest, int nYdest, int nWidth,150 BOOL DIBSection::BitBlt(HDC hdcDest, int nXdest, int nYdest, int nWidth, 151 151 int nHeight, int nXsrc, int nYsrc, DWORD Rop) 152 152 { 153 HWND hwndDest = WinWindowFromDC(hdcDest); 153 154 HPS hps = (HPS)hdcDest; 154 155 POINTL point[4]; 155 156 LONG rc; 157 158 dprintf(("DIBSection::BitBlt %X %x (%d,%d) to (%d,%d) (%d,%d) rop %x\n", hdcDest, hwndDest, nXdest, nYdest, nWidth, nHeight, nXsrc, nYsrc, Rop)); 156 159 157 160 if(hwndDest != 0) { … … 179 182 else point[3].y = nYsrc + nHeight; 180 183 184 #if 0 181 185 if(fFlip & FLIP_VERT) { 182 186 ULONG y; … … 192 196 point[1].x = x; 193 197 } 198 #endif 194 199 195 200 rc = GpiDrawBits(hps, bmpBits, pOS2bmp, 4, &point[0], ROP_SRCCOPY, BBO_OR);
Note:
See TracChangeset
for help on using the changeset viewer.