Fix VPSS-1108 issue about Canvas::Copy()
authorhoonik.lee <hoonik.lee@samsung.com>
Wed, 7 Aug 2013 06:11:14 +0000 (15:11 +0900)
committerhoonik.lee <hoonik.lee@samsung.com>
Wed, 7 Aug 2013 06:11:14 +0000 (15:11 +0900)
Change-Id: Iee7f30552c3929519c52c15763a4fcbbd2c7b385
Signed-off-by: hoonik.lee <hoonik.lee@samsung.com>
src/graphics/FGrp_Canvas.cpp

index 251af9e..8d08924 100755 (executable)
@@ -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;