hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=37a029102b1ed61ee08d3dc3019a42c1630c7a09
commit 37a029102b1ed61ee08d3dc3019a42c1630c7a09 Author: ChunEon Park <her...@hermet.pe.kr> Date: Tue Aug 25 03:02:00 2015 +0900 we don't use engine anymore. use acceleration. --- src/bin/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bin/main.c b/src/bin/main.c index 1753669..6ffb73f 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -370,10 +370,10 @@ elm_setup() if (scale) elm_config_scale_set(atof(scale)); /* Recover the current engine since it will be reset by - elm_config_profiel_set() */ - char *engine = getenv("ELM_ENGINE"); - if (engine && !strncmp(engine, "gl", strlen("gl"))) - elm_config_accel_preference_set("3d"); + elm_config_profile_set() */ + char *engine = getenv("ELM_ACCEL"); + if (engine && !strncmp(engine, "hw", strlen("hw"))) + elm_config_accel_preference_set("hw"); elm_config_focus_highlight_clip_disabled_set(EINA_FALSE); elm_config_scroll_bounce_enabled_set(EINA_FALSE); --