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

    r1533 r1686  
    1 /* $Id: dibsect.cpp,v 1.6 1999-10-31 21:38:15 achimha Exp $ */
     1/* $Id: dibsect.cpp,v 1.7 1999-11-10 14:15:23 sandervl Exp $ */
    22
    33/*
     
    148148//******************************************************************************
    149149#if 1
    150 BOOL DIBSection::BitBlt(HDC hdcDest, HWND hwndDest, int nXdest, int nYdest, int nWidth,
     150BOOL DIBSection::BitBlt(HDC hdcDest, int nXdest, int nYdest, int nWidth,
    151151                        int nHeight, int nXsrc, int nYsrc, DWORD Rop)
    152152{
     153 HWND   hwndDest = WinWindowFromDC(hdcDest);
    153154 HPS    hps = (HPS)hdcDest;
    154155 POINTL point[4];
    155156 LONG   rc;
     157
     158  dprintf(("DIBSection::BitBlt %X %x (%d,%d) to (%d,%d) (%d,%d) rop %x\n", hdcDest, hwndDest, nXdest, nYdest, nWidth, nHeight, nXsrc, nYsrc, Rop));
    156159
    157160  if(hwndDest != 0) {
     
    179182  else  point[3].y = nYsrc + nHeight;
    180183
     184#if 0
    181185  if(fFlip & FLIP_VERT) {
    182186    ULONG y;
     
    192196        point[1].x = x;
    193197  }
     198#endif
    194199
    195200  rc = GpiDrawBits(hps, bmpBits, pOS2bmp, 4, &point[0], ROP_SRCCOPY, BBO_OR);
Note: See TracChangeset for help on using the changeset viewer.