evas/blend: oops, missed a variable declaration.

build error by this commit.

aede29e2d4
This commit is contained in:
ChunEon Park 2014-05-31 14:43:48 +09:00
parent aede29e2d4
commit 0650797825
1 changed files with 3 additions and 2 deletions

View File

@ -9,9 +9,10 @@ static void
_op_blend_p_c_dp_neon(DATA32 * __restrict s, DATA8 *m EINA_UNUSED, DATA32 c, DATA32 * __restrict d, int l) {
/* Current this neon code is a little buggy, color blending won't be done
correctly. So leave the code depend on the compilier optimization. */
correctly. So leave the code depend on the compilier optimization. */
#if 1
int i = 0;
int i;
int alpha;
for (i = 0; i < l; i++)
{