From: Ilji Seo Date: Tue, 9 Jul 2013 05:58:29 +0000 (+0900) Subject: Fixed N_SE-44060 X-Git-Tag: accepted/tizen/20130924.144426~1^2~120^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=066483dad35c79771a5e9a5a62c7e826aa4d2580;p=platform%2Fframework%2Fnative%2Fuifw.git Fixed N_SE-44060 Change-Id: I02aa3968e60ee36f1271fab40f40c40bc7ab43ff Signed-off-by: Ilji Seo --- diff --git a/src/graphics/FGrp_CanvasPixman.cpp b/src/graphics/FGrp_CanvasPixman.cpp index 2705500..3e6ba16 100755 --- a/src/graphics/FGrp_CanvasPixman.cpp +++ b/src/graphics/FGrp_CanvasPixman.cpp @@ -216,6 +216,8 @@ bool ResizePixmap(Tizen::Graphics::_Util::Pixmap& dstImage, const Tizen::Graphic pixman_image_set_filter(pPixmanSrc, filter, NULL, 0); + pixman_image_set_repeat(pPixmanSrc, PIXMAN_REPEAT_REFLECT); + pixman_image_composite32(PIXMAN_OP_SRC, pPixmanSrc, 0, pPixmanDst, 0, 0, 0, 0, 0, 0, dstImage.width, dstImage.height); return true;