Ignore:
Timestamp:
Nov 10, 1999, 3:15:23 PM (26 years ago)
Author:
sandervl
Message:

removed flipping in dibsection

File:
1 edited

Legend:

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

    r1666 r1686  
    1 /* $Id: gdi32.cpp,v 1.14 1999-11-09 17:06:14 cbratschi Exp $ */
     1/* $Id: gdi32.cpp,v 1.15 1999-11-10 14:15:23 sandervl Exp $ */
    22
    33/*
     
    295295HDC WIN32API CreateCompatibleDC( HDC arg1)
    296296{
    297     dprintf(("GDI32: CreateCompatibleDC %X\n", arg1));
    298     return O32_CreateCompatibleDC(arg1);
     297 HDC rc;
     298
     299    rc = O32_CreateCompatibleDC(arg1);
     300    dprintf(("GDI32: CreateCompatibleDC %X returned %x", arg1, rc));
     301    return rc;
    299302}
    300303//******************************************************************************
     
    408411HPALETTE WIN32API SelectPalette(HDC arg1, HPALETTE arg2, BOOL arg3)
    409412{
    410     dprintf(("GDI32: SelectPalette\n"));
     413    dprintf(("GDI32: SelectPalette %x", arg1));
    411414    return O32_SelectPalette(arg1, arg2, arg3);
    412415}
     
    526529        DIBSection *dsect = DIBSection::findHDC(hdcSrc);
    527530        if(dsect) {
    528                 return(dsect->BitBlt(hdcDest, O32_WindowFromDC(hdcDest), arg2, arg3, arg4,
    529                                      arg5, arg7, arg8, arg9));
     531                return(dsect->BitBlt(hdcDest, arg2, arg3, arg4, arg5, arg7, arg8, arg9));
    530532        }
    531533    }
Note: See TracChangeset for help on using the changeset viewer.