Lines Matching refs:nSrcX
1044 … for( long nSrcX = aRectSrc.Left(), nDstX = aRectDst.Left(); nSrcX < nSrcEndX; nSrcX++, nDstX++ ) in CopyPixel() local
1045 pWriteAcc->SetPixelIndex( nDstY, nDstX, pMap[ pReadAcc->GetPixelIndex( nSrcY, nSrcX ) ] ); in CopyPixel()
1052 … for( long nSrcX = aRectSrc.Left(), nDstX = aRectDst.Left(); nSrcX < nSrcEndX; nSrcX++, nDstX++ ) in CopyPixel() local
1053 …cc->SetPixel( nDstY, nDstX, pReadAcc->GetPaletteColor( pReadAcc->GetPixelIndex( nSrcY, nSrcX ) ) ); in CopyPixel()
1057 … for( long nSrcX = aRectSrc.Left(), nDstX = aRectDst.Left(); nSrcX < nSrcEndX; nSrcX++, nDstX++ ) in CopyPixel() local
1058 pWriteAcc->SetPixel( nDstY, nDstX, pReadAcc->GetPixel( nSrcY, nSrcX ) ); in CopyPixel()
1082 const long nSrcX = aRectSrc.Left(); in CopyPixel() local
1084 const long nSrcEndX1 = nSrcX + nWidth - 1L; in CopyPixel()
1091 if( ( nDstX <= nSrcX ) && ( nDstY <= nSrcY ) ) in CopyPixel()
1094 for( long nX = nSrcX, nXN = nDstX; nX <= nSrcEndX1; nX++, nXN++ ) in CopyPixel()
1097 else if( ( nDstX <= nSrcX ) && ( nDstY >= nSrcY ) ) in CopyPixel()
1100 for( long nX = nSrcX, nXN = nDstX; nX <= nSrcEndX1; nX++, nXN++ ) in CopyPixel()
1103 else if( ( nDstX >= nSrcX ) && ( nDstY <= nSrcY ) ) in CopyPixel()
1106 for( long nX = nSrcEndX1, nXN = nDstEndX1; nX >= nSrcX; nX--, nXN-- ) in CopyPixel()
1112 for( long nX = nSrcEndX1, nXN = nDstEndX1; nX >= nSrcX; nX--, nXN-- ) in CopyPixel()