hermet pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=74ff95c349af9717edbed1246d792a205056f276
commit 74ff95c349af9717edbed1246d792a205056f276 Author: ChunEon Park <her...@hermet.pe.kr> Date: Fri Dec 19 21:02:28 2014 +0900 evas/map: fix aa regression bug. --- src/lib/evas/common/evas_map_image_loop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/evas/common/evas_map_image_loop.c b/src/lib/evas/common/evas_map_image_loop.c index 2581b6d..92bff0e 100644 --- a/src/lib/evas/common/evas_map_image_loop.c +++ b/src/lib/evas/common/evas_map_image_loop.c @@ -352,6 +352,7 @@ *d = MUL4_SYM(cval, val1); cv += cd; // col # endif + if (anti_alias) *d = _aa_coverage_apply(line, ww, w, *d); # endif # else *d = *s; @@ -359,7 +360,6 @@ u += ud; v += vd; # endif //COLBLACK - if (anti_alias) *d = _aa_coverage_apply(line, ww, w, *d); d++; ww--; } --