aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/extantz/extantz.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2015-09-11 10:26:48 +1000
committerDavid Walter Seikel2015-09-11 10:26:48 +1000
commit059c7c4dca4b0b46e610b105cd85e7d97fc13f2f (patch)
tree55c716a3ec80d7582901b1ce5277c5a73e71e2b7 /src/extantz/extantz.c
parentTODO++ (diff)
downloadSledjHamr-059c7c4dca4b0b46e610b105cd85e7d97fc13f2f.zip
SledjHamr-059c7c4dca4b0b46e610b105cd85e7d97fc13f2f.tar.gz
SledjHamr-059c7c4dca4b0b46e610b105cd85e7d97fc13f2f.tar.bz2
SledjHamr-059c7c4dca4b0b46e610b105cd85e7d97fc13f2f.tar.xz
Failed experiment, but let's keep it for now.
Diffstat (limited to '')
-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);