Changeset 2802 for trunk/src/gdi32/blit.cpp
- Timestamp:
- Feb 16, 2000, 3:25:43 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/blit.cpp
r2614 r2802 1 /* $Id: blit.cpp,v 1. 4 2000-02-03 18:59:04sandervl Exp $ */1 /* $Id: blit.cpp,v 1.5 2000-02-16 14:18:09 sandervl Exp $ */ 2 2 3 3 /* … … 18 18 #include "dibsect.h" 19 19 #include "rgbcvt.h" 20 21 #define DBG_LOCALLOG DBG_blit 22 #include "dbglocal.h" 20 23 21 24 static ULONG QueryPaletteSize(BITMAPINFOHEADER *pBHdr); … … 134 137 DWORD *bitfields = (DWORD *)info->bmiColors; 135 138 136 dprintf(("BI_BITFIELDS compression %x %x %x", *bitfields, *(bitfields+1), *(bitfields+2)));137 139 ((BITMAPINFO *)info)->bmiHeader.biCompression = 0; 138 140 compression = BI_BITFIELDS; 139 141 if(*(bitfields+1) == 0x3E0) 140 142 {//RGB 555? 143 dprintf(("BI_BITFIELDS compression %x %x %x", *bitfields, *(bitfields+1), *(bitfields+2))); 144 141 145 newbits = (WORD *)malloc(imgsize); 142 146 if(CPUFeatures & CPUID_MMX) {
Note:
See TracChangeset
for help on using the changeset viewer.