From: hoonik.lee Date: Wed, 7 Aug 2013 06:11:14 +0000 (+0900) Subject: Fix VPSS-1108 issue about Canvas::Copy() X-Git-Tag: accepted/tizen/20131002.165803^2~498 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e979915cee42faa465c7e8b4b6ec0be66dc173e6;p=platform%2Fframework%2Fnative%2Fuifw.git Fix VPSS-1108 issue about Canvas::Copy() Change-Id: Iee7f30552c3929519c52c15763a4fcbbd2c7b385 Signed-off-by: hoonik.lee --- diff --git a/src/graphics/FGrp_Canvas.cpp b/src/graphics/FGrp_Canvas.cpp index 251af9e..8d08924 100755 --- a/src/graphics/FGrp_Canvas.cpp +++ b/src/graphics/FGrp_Canvas.cpp @@ -4288,7 +4288,7 @@ _Canvas::__Copy(const Rectangle& destRect, const _Canvas& srcCanvas, const Recta _Util::Pixmap srcImageEx(clippedSrcRect.width, clippedSrcRect.height, sizeof(SystemPixel) * 8, pSrcAddr, srcPitch * sizeof(SystemPixel)); _Util::Pixmap dstImageEx(__pScratchPad->GetWidth(), __pScratchPad->GetHeight(), sizeof(SystemPixel) * 8, pDstAddr, dstPitch * sizeof(SystemPixel)); - Tizen::Graphics::_Effect::ScaleImage(dstImageEx, destRect.x, destRect.y, destRect.width, destRect.height, srcImageEx); + Tizen::Graphics::_Effect::ScaleImage(dstImageEx, destRect.x, destRect.y, destRect.width, destRect.height, srcImageEx, _Effect::ROP_COPY); } return E_SUCCESS;