Changeset 10434 for trunk/src/gdi32/gdi32.cpp
- Timestamp:
- Jan 30, 2004, 11:20:00 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/gdi32.cpp
r10374 r10434 1 /* $Id: gdi32.cpp,v 1.9 1 2004-01-11 11:42:15 sandervlExp $ */1 /* $Id: gdi32.cpp,v 1.92 2004-01-30 22:19:59 bird Exp $ */ 2 2 3 3 /* … … 171 171 //****************************************************************************** 172 172 //****************************************************************************** 173 HPEN WIN32API ExtCreatePen(DWORD dwPenStyle, DWORD dwWidth, const LOGBRUSH *lplb, 173 HPEN WIN32API ExtCreatePen(DWORD dwPenStyle, DWORD dwWidth, const LOGBRUSH *lplb, 174 174 DWORD dwStyleCount, const DWORD *lpStyle) 175 175 { … … 216 216 { 217 217 HBRUSH hBrush; 218 218 219 219 hBrush = O32_CreateHatchBrush(fnStyle, clrref); 220 220 if(hBrush) STATS_CreateHatchBrush(hBrush, fnStyle, clrref); … … 265 265 { 266 266 dprintf(("GDI32: CreateDIBPatternBrush (%08xh, %08xh) %x (%d,%d) bpp %d", 267 hglbDIBPacked, fuColorSpec, lpMem, lpMem->bmiHeader.biWidth, 267 hglbDIBPacked, fuColorSpec, lpMem, lpMem->bmiHeader.biWidth, 268 268 lpMem->bmiHeader.biHeight, lpMem->bmiHeader.biBitCount)); 269 269 … … 541 541 return rc; 542 542 } 543 #ifdef DEBUG 543 #ifdef DEBUG_LOGGING 544 544 //****************************************************************************** 545 545 //****************************************************************************** … … 760 760 dprintf(("WARNING: GDI32: RectVisible %x lpRect == NULL!")); 761 761 return FALSE; 762 } 762 } 763 763 dprintf(("GDI32: RectVisible %x (%d,%d)(%d,%d)", hdc, lpRect->left, lpRect->top, lpRect->right, lpRect->bottom)); 764 764 return O32_RectVisible(hdc, lpRect);
Note:
See TracChangeset
for help on using the changeset viewer.