evas map: shut up annoying compile warnings.

These variables must be logically initialized,
but compiler couldn't catch it, prints warnings.
This commit is contained in:
Hermet Park 2019-04-18 15:08:35 +09:00
parent cf70826b33
commit f10bd61c9d
1 changed files with 2 additions and 1 deletions

View File

@ -354,7 +354,8 @@ _map_triangle_draw_linear(RGBA_Image *src, RGBA_Image *dst,
int dw = dst->cache_entry.w;
int x1, x2, x, y, uu, vv, ar, ab, iru, irv, px, ay;
float dx, u, v, iptr;
float _dcdx[4], _dcdya[4], _ca[4], c[4];
float _dcdx[4], _dcdya[4], _ca[4];
float c[4] = {0, 0, 0, 0};
DATA32 *buf, *tmp;
DATA8 *mbuf;