Lines Matching refs:nDstX
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 …pWriteAcc->SetPixel( nDstY, nDstX, pReadAcc->GetPaletteColor( pReadAcc->GetPixelIndex( nSrcY, nSrc… 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()
1086 const long nDstX = aRectDst.Left(); in CopyPixel() local
1088 const long nDstEndX1 = nDstX + 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()