Lines Matching refs:hDC

344 void ImplDrawBitmap( HDC hDC,  in ImplDrawBitmap()  argument
348 if( hDC ) in ImplDrawBitmap()
370 const int nOldStretchMode = SetStretchBltMode( hDC, STRETCH_DELETESCANS ); in ImplDrawBitmap()
372 StretchDIBits( hDC, in ImplDrawBitmap()
380 SetStretchBltMode( hDC, nOldStretchMode ); in ImplDrawBitmap()
391 nOldBkColor = SetBkColor( hDC, RGB( 0xFF, 0xFF, 0xFF ) ); in ImplDrawBitmap()
392 nOldTextColor = ::SetTextColor( hDC, RGB( 0x00, 0x00, 0x00 ) ); in ImplDrawBitmap()
398 BitBlt( hDC, in ImplDrawBitmap()
407 const int nOldStretchMode = SetStretchBltMode( hDC, STRETCH_DELETESCANS ); in ImplDrawBitmap()
409 StretchBlt( hDC, in ImplDrawBitmap()
417 SetStretchBltMode( hDC, nOldStretchMode ); in ImplDrawBitmap()
422 SetBkColor( hDC, nOldBkColor ); in ImplDrawBitmap()
423 ::SetTextColor( hDC, nOldTextColor ); in ImplDrawBitmap()
553 HDC hDC = getHDC(); in drawBitmap() local
559 hMemBitmap = CreateCompatibleBitmap( hDC, nDstWidth, nDstHeight ); in drawBitmap()
560 hMaskBitmap = CreateCompatibleBitmap( hDC, nDstWidth, nDstHeight ); in drawBitmap()
567 BitBlt( hMemDC, 0, 0, nDstWidth, nDstHeight, hDC, nDstX, nDstY, SRCCOPY ); in drawBitmap()
602 BitBlt( hDC, nDstX, nDstY, nDstWidth, nDstHeight, hMemDC, 0, 0, SRCCOPY ); in drawBitmap()
658 HDC hDC = getHDC(); in drawMask() local
660 HBRUSH hOldBrush = SelectBrush( hDC, hMaskBrush ); in drawMask()
670 ImplDrawBitmap( hDC, aPosAry, aTmp, FALSE, 0x00B8074AUL ); in drawMask()
673 ImplDrawBitmap( hDC, aPosAry, rSalBitmap, FALSE, 0x00B8074AUL ); in drawMask()
675 SelectBrush( hDC, hOldBrush ); in drawMask()
690 HDC hDC = getHDC(); in getBitmap() local
691 HBITMAP hBmpBitmap = CreateCompatibleBitmap( hDC, nDX, nDY ); in getBitmap()
696 …bRet = BitBlt( hBmpDC, 0, 0, (int) nDX, (int) nDY, hDC, (int) nX, (int) nY, SRCCOPY ) ? TRUE : FAL… in getBitmap()