From b7cd7e5f18be1ee71d1ad97ab1ec7b97f1d62ba0 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 7 Feb 2013 13:19:55 +0000 Subject: [PATCH] remove disabled fps stuff from physics module SVN revision: 83748 --- src/modules/physics/e_mod_physics.c | 37 ----------------------------- 1 file changed, 37 deletions(-) diff --git a/src/modules/physics/e_mod_physics.c b/src/modules/physics/e_mod_physics.c index 3eb7dd833..a33592c49 100644 --- a/src/modules/physics/e_mod_physics.c +++ b/src/modules/physics/e_mod_physics.c @@ -83,43 +83,6 @@ static void _e_mod_physics_win_configure(E_Physics_Win *pw, int h, int border); static void _e_mod_physics_shelf_new(E_Physics *p, E_Shelf *es); -/* TODO -static void -_e_mod_physics_fps_update(E_Physics *p) -{ - if (_comp_mod->conf->fps_show) - { - if (!p->fps_bg) - { - p->fps_bg = evas_object_rectangle_add(p->evas); - evas_object_color_set(p->fps_bg, 0, 0, 0, 128); - evas_object_layer_set(p->fps_bg, EVAS_LAYER_MAX); - evas_object_show(p->fps_bg); - - p->fps_fg = evas_object_text_add(p->evas); - evas_object_text_font_set(p->fps_fg, "Sans", 10); - evas_object_text_text_set(p->fps_fg, "???"); - evas_object_color_set(p->fps_fg, 255, 255, 255, 255); - evas_object_layer_set(p->fps_fg, EVAS_LAYER_MAX); - evas_object_show(p->fps_fg); - } - } - else - { - if (p->fps_fg) - { - evas_object_del(p->fps_fg); - p->fps_fg = NULL; - } - if (p->fps_bg) - { - evas_object_del(p->fps_bg); - p->fps_bg = NULL; - } - } -} -*/ - static void _e_mod_physics_move_end(void *p_w, void *b_d)