Ignore:
Timestamp:
Feb 16, 2000, 3:25:43 PM (26 years ago)
Author:
sandervl
Message:

Added new logging feature

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gdi32/dibsect.cpp

    r2718 r2802  
    1 /* $Id: dibsect.cpp,v 1.17 2000-02-10 00:36:10 sandervl Exp $ */
     1/* $Id: dibsect.cpp,v 1.18 2000-02-16 14:18:09 sandervl Exp $ */
    22
    33/*
     
    2727#include "oslibgpi.h"
    2828
     29#define DBG_LOCALLOG    DBG_dibsect
     30#include "dbglocal.h"
     31
    2932//Win32 apis used:
    3033HWND WIN32API WindowFromDC(HDC hdc);
     
    237240   if(bmpsize & 3)
    238241   {
    239      bmpsize = (bmpsize + 3) & ~3;
     242        bmpsize = (bmpsize + 3) & ~3;
    240243   }
    241244
     
    251254   pOS2bmp->cbImage       = pbmi->biSizeImage;
    252255
     256   dprintf(("DIBSection::SetDIBits (%d,%d), %d %d", pbmi->biWidth, pbmi->biHeight, pbmi->biBitCount, pbmi->biCompression));
     257
    253258   if(palsize)
    254259     memcpy(pOS2bmp->argbColor, (char *)pbmi + 1 , palsize);
Note: See TracChangeset for help on using the changeset viewer.