From 2d96aea2b26ea5957995c9390a8f24f0ad582813 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Tue, 10 Jun 2008 12:17:56 +0000 Subject: [PATCH] Deleting previous tests object was counted as part of the current test. So you could have different result when running them one after the other or all of them. Their is still one draw back, we dont count this time at all now. SVN revision: 34794 --- src/bin/ui.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bin/ui.c b/src/bin/ui.c index 07dd97c..81b72dd 100644 --- a/src/bin/ui.c +++ b/src/bin/ui.c @@ -75,6 +75,10 @@ _ui_all(void) engine_loop(); evas_render(evas); } + /* This give time to delete the objects of the previous test and make + the result of next test more accurate. Draw back, some time is not + counted at all. */ + evas_render(evas); t_count++; fps += p_fps; key_func("Escape");