Lines Matching refs:nX
617 bool WinSalGraphics::drawAlphaRect( long nX, long nY, long nWidth, in drawAlphaRect() argument
635 bool bRet = AlphaBlend( getHDC(), nX, nY, nWidth, nHeight, in drawAlphaRect()
681 SalBitmap* WinSalGraphics::getBitmap( long nX, long nY, long nDX, long nDY ) in getBitmap() argument
696 …bRet = BitBlt( hBmpDC, 0, 0, (int) nDX, (int) nDY, hDC, (int) nX, (int) nY, SRCCOPY ) ? TRUE : FAL… in getBitmap()
721 SalColor WinSalGraphics::getPixel( long nX, long nY ) in getPixel() argument
723 COLORREF aWinCol = ::GetPixel( getHDC(), (int) nX, (int) nY ); in getPixel()
735 void WinSalGraphics::invert( long nX, long nY, long nWidth, long nHeight, SalInvert nFlags ) in invert() argument
744 WIN_Rectangle( getHDC(), (int)nX, (int)nY, (int)(nX+nWidth), (int)(nY+nHeight) ); in invert()
763 PatBlt( getHDC(), nX, nY, nWidth, nHeight, PATINVERT ); in invert()
770 aRect.left = (int)nX; in invert()
772 aRect.right = (int)nX+nWidth; in invert()