expedite-cxx: Rephrase a test to better perform.

This commit is contained in:
Savio Sena 2014-10-20 19:43:22 -02:00
parent 309e04e44a
commit c58e2e4047
1 changed files with 11 additions and 8 deletions

View File

@ -49,27 +49,30 @@ static void _cleanup(void)
/* loop - do things */ /* loop - do things */
static void _loop(double t, int f) static void _loop(double t, int f)
{ {
Evas_Coord x, y, w, h;
static Evas_Map *m = NULL; static Evas_Map *m = NULL;
if (!m) m = evas_map_new(4); if (!m) m = evas_map_new(4);
evas_map_smooth_set(m, 0); evas_map_smooth_set(m, 0);
int i = 0; int i = 0;
for (evas::image& img : images) for (evas::image& img : images)
{ {
Evas_Coord w = 120; w = 120;
Evas_Coord h = 160; h = 160;
Evas_Coord x = (win_w / 2) - (w / 2); x = (win_w / 2) - (w / 2);
x += sin((double)(f + (i * 13)) / (36.7 * SLOW)) * (w / 2); x += ::sin((double)(f + (i * 13)) / (36.7 * SLOW)) * (w / 2);
Evas_Coord y = (win_h / 2) - (h / 2); y = (win_h / 2) - (h / 2);
y += cos((double)(f + (i * 28)) / (43.8 * SLOW)) * (h / 2); y += ::cos((double)(f + (i * 28)) / (43.8 * SLOW)) * (h / 2);
evas_map_util_points_populate_from_geometry(m, x, y, w, h, 0); ::evas_map_util_points_populate_from_geometry(m, x, y, w, h, 0);
evas_map_util_rotate(m, f, x + (w / 2), y + (h / 2)); ::evas_map_util_rotate(m, f, x + (w / 2), y + (h / 2));
img.map_enable_set(1); img.map_enable_set(1);
img.map_set(m); img.map_set(m);
++i; ++i;
} }
std::cout << "XXX << " << __FILE__ << ":"<< __LINE__ << " >> " << __FUNCTION__ << "() :: i = " << i << std::flush << std::endl;
FPS_STD(NAME); FPS_STD(NAME);
} }