Lines Matching refs:aRectSrc
143 Rectangle aRectSrc( rRectSrc ); in CopyPixel() local
145 aRectSrc.Intersection( Rectangle( Point(), aCopySizePix ) ); in CopyPixel()
147 if( !aRectSrc.IsEmpty() ) in CopyPixel()
157 const long nWidth = Min( aRectSrc.GetWidth(), aRectDst.GetWidth() ); in CopyPixel()
158 const long nHeight = Min( aRectSrc.GetHeight(), aRectDst.GetHeight() ); in CopyPixel()
159 const long nSrcEndX = aRectSrc.Left() + nWidth; in CopyPixel()
160 const long nSrcEndY = aRectSrc.Top() + nHeight; in CopyPixel()
163 for( long nSrcY = aRectSrc.Top(); nSrcY < nSrcEndY; nSrcY++, nDstY++ ) in CopyPixel()
164 … for( long nSrcX = aRectSrc.Left(), nDstX = aRectDst.Left(); nSrcX < nSrcEndX; nSrcX++, nDstX++ ) in CopyPixel()
177 Rectangle aRectSrc( rRectSrc ); in CopyPixel() local
179 aRectSrc.Intersection( Rectangle( Point(), aSizePix ) ); in CopyPixel()
181 if( !aRectSrc.IsEmpty() && ( aRectSrc != aRectDst ) ) in CopyPixel()
187 const long nWidth = Min( aRectSrc.GetWidth(), aRectDst.GetWidth() ); in CopyPixel()
188 const long nHeight = Min( aRectSrc.GetHeight(), aRectDst.GetHeight() ); in CopyPixel()
189 const long nSrcX = aRectSrc.Left(); in CopyPixel()
190 const long nSrcY = aRectSrc.Top(); in CopyPixel()