elm perf_test: fix warning of implicit conversion of floating point

The result of integral division is converted into floating point.
To fix the warning by assigning the result to Evas_Coord variable, type
cast is done.
This commit is contained in:
Jaehyun Cho 2019-09-09 14:46:01 +09:00
parent 1ecaf6fa02
commit b6d5ee9745
3 changed files with 6 additions and 6 deletions

View File

@ -36,9 +36,9 @@ TST(01, tick) (Evas *e EINA_UNUSED, double f, Evas_Coord win_w, Evas_Coord win_h
w = 5 + ((1.0 + cos((double)((f * 30.0) + (i * 10)))) * w0 * 2);
h = 5 + ((1.0 + sin((double)((f * 40.0) + (i * 19)))) * h0 * 2);
x = (win_w / 2) - (w / 2);
x += sin((double)((f * 50.0) + (i * 13))) * (w0 / 2);
x += (Evas_Coord)(sin((double)((f * 50.0) + (i * 13))) * (w0 / 2));
y = (win_h / 2) - (h / 2);
y += cos((double)((f * 45.0) + (i * 28))) * (h0 / 2);
y += (Evas_Coord)(cos((double)((f * 45.0) + (i * 28))) * (h0 / 2));
evas_object_geometry_set(o, x, y, w, h);
}
}

View File

@ -36,9 +36,9 @@ TST(02, tick) (Evas *e EINA_UNUSED, double f, Evas_Coord win_w, Evas_Coord win_h
w = 5 + ((1.0 + cos((double)((f * 30.0) + (i * 10)))) * w0 * 2);
h = 5 + ((1.0 + sin((double)((f * 40.0) + (i * 19)))) * h0 * 2);
x = (win_w / 2) - (w / 2);
x += sin((double)((f * 50.0) + (i * 13))) * (w0 / 2);
x += (Evas_Coord)(sin((double)((f * 50.0) + (i * 13))) * (w0 / 2));
y = (win_h / 2) - (h / 2);
y += cos((double)((f * 45.0) + (i * 28))) * (h0 / 2);
y += (Evas_Coord)(cos((double)((f * 45.0) + (i * 28))) * (h0 / 2));
evas_object_geometry_set(o, x, y, w, h);
}
}

View File

@ -36,9 +36,9 @@ TST(03, tick) (Evas *e EINA_UNUSED, double f, Evas_Coord win_w, Evas_Coord win_h
w = 5 + ((1.0 + cos((double)((f * 30.0) + (i * 10)))) * w0 * 2);
h = 5 + ((1.0 + sin((double)((f * 40.0) + (i * 19)))) * h0 * 2);
x = (win_w / 2) - (w / 2);
x += sin((double)((f * 50.0) + (i * 13))) * (w0 / 2);
x += (Evas_Coord)(sin((double)((f * 50.0) + (i * 13))) * (w0 / 2));
y = (win_h / 2) - (h / 2);
y += cos((double)((f * 45.0) + (i * 28))) * (h0 / 2);
y += (Evas_Coord)(cos((double)((f * 45.0) + (i * 28))) * (h0 / 2));
evas_object_geometry_set(o, x, y, w, h);
}
}