From: Hermet Park Date: Thu, 18 Nov 2021 04:18:23 +0000 (+0900) Subject: sw_engine raster: remove the condition which is out of the genearal case. X-Git-Tag: accepted/tizen/unified/20211125.144739~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6347cac6db4bafe55b777f452c4595ce05619975;p=platform%2Fcore%2Fgraphics%2Ftizenvg.git sw_engine raster: remove the condition which is out of the genearal case. --- diff --git a/src/lib/sw_engine/tvgSwRaster.cpp b/src/lib/sw_engine/tvgSwRaster.cpp index c019396..0553658 100644 --- a/src/lib/sw_engine/tvgSwRaster.cpp +++ b/src/lib/sw_engine/tvgSwRaster.cpp @@ -84,8 +84,6 @@ static uint32_t _interpUpScaler(const uint32_t *img, uint32_t w, uint32_t h, flo auto c3 = img[(rX + 1) + ((rY + 1) * w)]; auto c4 = img[rX + ((rY + 1) * w)]; - if (c1 == c2 && c1 == c3 && c1 == c4) return img[rX + (rY * w)]; - return COLOR_INTERPOLATE(COLOR_INTERPOLATE(c1, 255 - dX, c2, dX), 255 - dY, COLOR_INTERPOLATE(c4, 255 - dX, c3, dX), dY); }