There is gl engine issue in latest Tizen 2.4 platform binary.
In order to solve this problem, it is needed to set ELM_ENGINE
environment value as gl.
This patch apply this setting in mini_browser code level.
When gl issue is solved in Tizen 2.4 platform,
This patch should be reverted.
Bug: http://107.108.218.239/bugzilla/show_bug.cgi?id=10787
Reviewed by: Piotr Tworek, Youngbok Yoon, joonhwan kwon
Change-Id: I5d6695502ff7d7be39e00293be1b236b15ec4314
Signed-off-by: Jongsoo Yoon <join.yoon@samsung.com>
fprintf(stderr, "efl_webview_app starting...\n");
ewk_set_arguments(argc, argv);
+ setenv("ELM_ENGINE", "gl", 1);
elm_init(0,NULL);
if (!ewk_init())
return EXIT_FAILURE;
static bool __br_app_create(void *data)
{
+ setenv("ELM_ENGINE", "gl", 1);
elm_init(0, NULL);
if (!ewk_init()) {
LOGE("elm_init Failed. App not started");
ewk_set_arguments(argc, argv);
ewk_init();
+ setenv("ELM_ENGINE", "gl", 1);
elm_init(0, NULL);
elm_config_preferred_engine_set("opengl_x11");