Lines Matching refs:nSrcX
164 … for( long nSrcX = aRectSrc.Left(), nDstX = aRectDst.Left(); nSrcX < nSrcEndX; nSrcX++, nDstX++ ) in CopyPixel() local
165 pWriteAcc->SetPixel( nDstY, nDstX, pReadAcc->GetPixel( nSrcY, nSrcX ) ); in CopyPixel()
189 const long nSrcX = aRectSrc.Left(); in CopyPixel() local
191 const long nSrcEndX1 = nSrcX + nWidth - 1L; in CopyPixel()
198 if( ( nDstX <= nSrcX ) && ( nDstY <= nSrcY ) ) in CopyPixel()
201 for( long nX = nSrcX, nXN = nDstX; nX <= nSrcEndX1; nX++, nXN++ ) in CopyPixel()
204 else if( ( nDstX <= nSrcX ) && ( nDstY >= nSrcY ) ) in CopyPixel()
207 for( long nX = nSrcX, nXN = nDstX; nX <= nSrcEndX1; nX++, nXN++ ) in CopyPixel()
210 else if( ( nDstX >= nSrcX ) && ( nDstY <= nSrcY ) ) in CopyPixel()
213 for( long nX = nSrcEndX1, nXN = nDstEndX1; nX >= nSrcX; nX--, nXN-- ) in CopyPixel()
219 for( long nX = nSrcEndX1, nXN = nDstEndX1; nX >= nSrcX; nX--, nXN-- ) in CopyPixel()