X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fefl_base%2Fappcore_efl_base.c;h=5cea46cea70f1f53b83a55aef2a6bef0186b9313;hb=51e19c69281e77d685411abb946938670a0f27d1;hp=387f69cb86b14eb6de961bca3e204477b8097eca;hpb=0fcfe3095409c931075c57faa7bd48809ab70b6f;p=platform%2Fcore%2Fappfw%2Fapp-core.git diff --git a/src/efl_base/appcore_efl_base.c b/src/efl_base/appcore_efl_base.c index 387f69c..5cea46c 100644 --- a/src/efl_base/appcore_efl_base.c +++ b/src/efl_base/appcore_efl_base.c @@ -19,31 +19,17 @@ #include #include #include -#include -#include #include "appcore_efl_base_private.h" #include "appcore_efl_base.h" static int __efl_app_init(int argc, char **argv, void *data) { - int r; int hint; - int is_vc_vt_automode = 0; const char *hwacc; elm_init(argc, argv); - r = vc_elm_is_supported_vt_auto(&is_vc_vt_automode); - if (r != 0) { - _ERR("[VC] Failed to get vconfkey of vt_automode"); - } else { - if (is_vc_vt_automode) { - vc_elm_initialize(); - vc_elm_set_auto_register_mode(2, 0); - } - } - hint = appcore_efl_base_get_hint(); if (hint & APPCORE_EFL_BASE_HINT_HW_ACC_CONTROL) { hwacc = getenv("HWACC"); @@ -65,17 +51,6 @@ static int __efl_app_init(int argc, char **argv, void *data) static void __efl_app_finish(void) { - int r; - int is_vc_vt_automode = 0; - - r = vc_elm_is_supported_vt_auto(&is_vc_vt_automode); - if (r != 0) { - _ERR("[VC] Failed to get vconfkey of vt_automode"); - } else { - if (is_vc_vt_automode) - vc_elm_deinitialize(); - } - elm_shutdown(); /* Check loader case */