evas map aa - match previous fix.

this matches 83eb1aa3c2 fix in the other
map render func
This commit is contained in:
Carsten Haitzler 2015-01-07 21:04:14 +09:00
parent 267b8a5ead
commit d5c3ad97e5
1 changed files with 2 additions and 2 deletions

View File

@ -175,9 +175,9 @@ FUNC_NAME_DO(RGBA_Image *src, RGBA_Image *dst,
da = dst->cache_entry.flags.alpha;
// allocate some s to hold out span list
spans = alloca((yend - ystart + 1) * sizeof(Line));
spans = alloca((yend - ystart + 3) * sizeof(Line));
memcpy(spans, &ms->spans[ystart - ms->ystart],
(yend - ystart + 1) * sizeof(Line));
(yend - ystart + 3) * sizeof(Line));
_clip_spans(spans, ystart, yend, cx, cw, EINA_TRUE);
// if operation is solid, bypass buf and draw func and draw direct to dst