evas filters: Reduce one log level

This commit is contained in:
Jean-Philippe Andre 2017-03-22 19:21:24 +09:00
parent 9aa335cecc
commit 7407a0d073
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ _bump_map_cpu_alpha_alpha(Evas_Filter_Command *cmd)
lxy = sin(fabs(zangle * M_PI / 180.));
lx = (int) (40.f * (lxy + 1.0) * cos(xyangle * M_PI / 180.));
ly = (int) (40.f * (lxy + 1.0) * sin(xyangle * M_PI / 180.));
INF("Using light vector (%d,%d)", lx, ly);
XDBG("Using light vector (%d,%d)", lx, ly);
// Generate light table
phong = malloc(256 * 256 * sizeof(*phong));