Changeset 4034 for trunk/src/gdi32/blit.cpp
- Timestamp:
- Aug 18, 2000, 8:14:59 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/blit.cpp
r3726 r4034 1 /* $Id: blit.cpp,v 1.1 5 2000-06-17 11:58:07sandervl Exp $ */1 /* $Id: blit.cpp,v 1.16 2000-08-18 18:14:56 sandervl Exp $ */ 2 2 3 3 /* … … 244 244 memcpy(infoLoc, info, sizeof(BITMAPINFO)); 245 245 246 if(GetDIBColorTable(hdc, 0, info->bmiHeader.biClrUsed, pColors) == 0) 246 if(GetDIBColorTable(hdc, 0, info->bmiHeader.biClrUsed, pColors) == 0) { 247 dprintf(("ERROR: StretchDIBits: GetDIBColorTable failed!!")); 247 248 return FALSE; 248 249 } 249 250 for(i=0;i<info->bmiHeader.biClrUsed;i++, pColorIndex++) 250 251 { … … 268 269 return rc; 269 270 } 270 271 271 rc = O32_StretchDIBits(hdc, xDst, yDst, widthDst, heightDst, xSrc, ySrc, 272 272 widthSrc, heightSrc, (void *)bits,
Note:
See TracChangeset
for help on using the changeset viewer.