aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/extantz/extantz.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/extantz/extantz.c')
-rw-r--r--src/extantz/extantz.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/extantz/extantz.c b/src/extantz/extantz.c
index 6ef9e14..310f9b9 100644
--- a/src/extantz/extantz.c
+++ b/src/extantz/extantz.c
@@ -398,7 +398,10 @@ static Eina_Bool doFrame(void *data)
398 else if ((ourGlobals->scene) && (ourGlobals->scene->image)) 398 else if ((ourGlobals->scene) && (ourGlobals->scene->image))
399 { 399 {
400// evas_object_image_pixels_dirty_set(elm_image_object_get(ourGlobals->scene->image), EINA_TRUE); 400// evas_object_image_pixels_dirty_set(elm_image_object_get(ourGlobals->scene->image), EINA_TRUE);
401#if USE_ELM_IMG
401 _draw_gl(elm_image_object_get(ourGlobals->scene->image)); 402 _draw_gl(elm_image_object_get(ourGlobals->scene->image));
403#else
404#endif
402 } 405 }
403 406
404 return EINA_TRUE; // Keep calling us. 407 return EINA_TRUE; // Keep calling us.
@@ -609,7 +612,6 @@ EAPI_MAIN int elm_main(int argc, char **argv)
609 612
610 ourGlobals.running = 1; 613 ourGlobals.running = 1;
611 614
612
613 // Don't do this, we need to clean up other stuff to, so set a clean up function below. 615 // Don't do this, we need to clean up other stuff to, so set a clean up function below.
614 //elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED); 616 //elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED);
615 elm_policy_set(ELM_POLICY_EXIT, ELM_POLICY_EXIT_NONE); 617 elm_policy_set(ELM_POLICY_EXIT, ELM_POLICY_EXIT_NONE);