Lines Matching refs:rTwoRect
334 …mplCreateXImage( SalDisplay *pSalDisp, int nScreen, long nDepth, const SalTwoRect& rTwoRect ) const in ImplCreateXImage()
352 long nWidth = rTwoRect.mnDestWidth; in ImplCreateXImage()
353 long nHeight = rTwoRect.mnDestHeight; in ImplCreateXImage()
447 pDstBuf = StretchAndConvert( *mpDIB, rTwoRect, nDstFormat, pPal, pMask ); in ImplCreateXImage()
579 const SalTwoRect& rTwoRect ) const in ImplGetDDB()
581 if( !mpDDB || !mpDDB->ImplMatches( nScreen, nDrawableDepth, rTwoRect ) ) in ImplGetDDB()
602 SalTwoRect aTwoRect( rTwoRect ); in ImplGetDDB()
675 const SalTwoRect& rTwoRect, in ImplDraw() argument
678 ImplGetDDB( aDrawable, nScreen, nDrawableDepth, rTwoRect ); in ImplDraw()
680 mpDDB->ImplDraw( aDrawable, nDrawableDepth, rTwoRect, rGC ); in ImplDraw()
842 ImplSalDDB::ImplSalDDB( XImage* pImage, Drawable aDrawable, int nScreen, const SalTwoRect& rTwoRect… in ImplSalDDB() argument
844 maTwoRect ( rTwoRect ), in ImplSalDDB()
954 bool ImplSalDDB::ImplMatches( int nScreen, long nDepth, const SalTwoRect& rTwoRect ) const in ImplMatches()
960 if( rTwoRect.mnSrcX == maTwoRect.mnSrcX && rTwoRect.mnSrcY == maTwoRect.mnSrcY && in ImplMatches()
961 rTwoRect.mnSrcWidth == maTwoRect.mnSrcWidth && rTwoRect.mnSrcHeight == maTwoRect.mnSrcHeight && in ImplMatches()
962 … rTwoRect.mnDestWidth == maTwoRect.mnDestWidth && rTwoRect.mnDestHeight == maTwoRect.mnDestHeight ) in ImplMatches()
967 …else if( rTwoRect.mnSrcWidth == rTwoRect.mnDestWidth && rTwoRect.mnSrcHeight == rTwoRect.mnDestHei… in ImplMatches()
969 rTwoRect.mnSrcX >= maTwoRect.mnSrcX && rTwoRect.mnSrcY >= maTwoRect.mnSrcY && in ImplMatches()
970 ( rTwoRect.mnSrcX + rTwoRect.mnSrcWidth ) <= ( maTwoRect.mnSrcX + maTwoRect.mnSrcWidth ) && in ImplMatches()
971 ( rTwoRect.mnSrcY + rTwoRect.mnSrcHeight ) <= ( maTwoRect.mnSrcY + maTwoRect.mnSrcHeight ) ) in ImplMatches()
982 void ImplSalDDB::ImplDraw( Drawable aDrawable, long nDrawableDepth, const SalTwoRect& rTwoRect, con… in ImplDraw() argument
985 rTwoRect.mnSrcX - maTwoRect.mnSrcX, rTwoRect.mnSrcY - maTwoRect.mnSrcY, in ImplDraw()
986 rTwoRect.mnDestWidth, rTwoRect.mnDestHeight, in ImplDraw()
987 rTwoRect.mnDestX, rTwoRect.mnDestY, rGC ); in ImplDraw()