fix elm performance example to init elm properly and not do engine stuff

cleanup of examples
This commit is contained in:
Carsten Haitzler 2015-09-15 16:25:20 +09:00
parent 8c30b69453
commit a13e2759e9
1 changed files with 1 additions and 10 deletions

View File

@ -589,16 +589,7 @@ EAPI_MAIN
at_port_h mf_at_port = NULL;
#endif
if (!elm_init(0, 0)) return 1;
elm_config_engine_set("software_x11");
engine = elm_config_engine_get();
if (engine != NULL && strcmp("software_x11", engine))
{
fprintf(stdout, "There is elementary not support OpenGL engine");
exit(1);
}
if (!elm_init(argc, argv)) return 1;
elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED);
win = elm_win_add(NULL, "3D Perfomance", ELM_WIN_BASIC);