Ephoto: Use an incrementing hack to get the desired dithered effect.

This commit is contained in:
Stephen okra Houston 2016-06-22 13:30:06 -05:00
parent 51a8be20a6
commit 66bb556e56
1 changed files with 5 additions and 0 deletions

View File

@ -754,7 +754,12 @@ _dither(void *data)
ef->im_data_new[index] = (a << 24) | (rr << 16) |
(gg << 8) | bb;
}
/*Extra incrementing the x and y values to get
* the desired checkerboard effect is likely a
* bad hack*/
x++;
}
y++;
passes++;
if (passes == 500)
{