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/blit.cpp

    r2614 r2802  
    1 /* $Id: blit.cpp,v 1.4 2000-02-03 18:59:04 sandervl Exp $ */
     1/* $Id: blit.cpp,v 1.5 2000-02-16 14:18:09 sandervl Exp $ */
    22
    33/*
     
    1818#include "dibsect.h"
    1919#include "rgbcvt.h"
     20
     21#define DBG_LOCALLOG    DBG_blit
     22#include "dbglocal.h"
    2023
    2124static ULONG QueryPaletteSize(BITMAPINFOHEADER *pBHdr);
     
    134137        DWORD *bitfields = (DWORD *)info->bmiColors;
    135138
    136         dprintf(("BI_BITFIELDS compression %x %x %x", *bitfields, *(bitfields+1), *(bitfields+2)));
    137139        ((BITMAPINFO *)info)->bmiHeader.biCompression = 0;
    138140        compression = BI_BITFIELDS;
    139141        if(*(bitfields+1) == 0x3E0)
    140142        {//RGB 555?
     143                dprintf(("BI_BITFIELDS compression %x %x %x", *bitfields, *(bitfields+1), *(bitfields+2)));
     144
    141145                newbits = (WORD *)malloc(imgsize);
    142146                if(CPUFeatures & CPUID_MMX) {
Note: See TracChangeset for help on using the changeset viewer.