Lines Matching refs:nSrcY
1043 for( long nSrcY = aRectSrc.Top(); nSrcY < nSrcEndY; nSrcY++, nDstY++ ) in CopyPixel() local
1045 pWriteAcc->SetPixelIndex( nDstY, nDstX, pMap[ pReadAcc->GetPixelIndex( nSrcY, nSrcX ) ] ); in CopyPixel()
1051 for( long nSrcY = aRectSrc.Top(); nSrcY < nSrcEndY; nSrcY++, nDstY++ ) in CopyPixel() local
1053 …cc->SetPixel( nDstY, nDstX, pReadAcc->GetPaletteColor( pReadAcc->GetPixelIndex( nSrcY, nSrcX ) ) ); in CopyPixel()
1056 for( long nSrcY = aRectSrc.Top(); nSrcY < nSrcEndY; nSrcY++, nDstY++ ) in CopyPixel() local
1058 pWriteAcc->SetPixel( nDstY, nDstX, pReadAcc->GetPixel( nSrcY, nSrcX ) ); in CopyPixel()
1083 const long nSrcY = aRectSrc.Top(); in CopyPixel() local
1085 const long nSrcEndY1 = nSrcY + nHeight - 1L; in CopyPixel()
1091 if( ( nDstX <= nSrcX ) && ( nDstY <= nSrcY ) ) in CopyPixel()
1093 for( long nY = nSrcY, nYN = nDstY; nY <= nSrcEndY1; nY++, nYN++ ) in CopyPixel()
1097 else if( ( nDstX <= nSrcX ) && ( nDstY >= nSrcY ) ) in CopyPixel()
1099 for( long nY = nSrcEndY1, nYN = nDstEndY1; nY >= nSrcY; nY--, nYN-- ) in CopyPixel()
1103 else if( ( nDstX >= nSrcX ) && ( nDstY <= nSrcY ) ) in CopyPixel()
1105 for( long nY = nSrcY, nYN = nDstY; nY <= nSrcEndY1; nY++, nYN++ ) in CopyPixel()
1111 for( long nY = nSrcEndY1, nYN = nDstEndY1; nY >= nSrcY; nY--, nYN-- ) in CopyPixel()