Force ELM_WAYLAND_EGL if engine set called when DISPLAY not set 96/166796/2
authorMikko Ylinen <mikko.ylinen@intel.com>
Thu, 10 Jan 2013 12:30:37 +0000 (14:30 +0200)
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>
Fri, 12 Jan 2018 04:46:51 +0000 (04:46 +0000)
Some applications are directly calling elm_config_preferred_engine_set.
To avoid patching all apps to work with Wayland, always set
ELM_WAYLAND_EGL if elm_config_preferred_engine_set is called with
EGL_OPENGL_X11 or EGL_SOFTWARE_X11 when DISPLAY is not set.

Change-Id: I9834709346049b527bcdc2e327d113ba7a8917e0
Signed-off-by: Mikko Ylinen <mikko.ylinen@intel.com>
src/lib/elementary/elm_config.c

index 4cac377..8334261 100644 (file)
@@ -4440,8 +4440,17 @@ elm_config_preferred_engine_get(void)
 EAPI void
 elm_config_preferred_engine_set(const char *engine)
 {
+   char *d;
    if (engine)
-     eina_stringshare_replace(&(_elm_preferred_engine), engine);
+     {
+#define ENGINE_COMPARE(name) (!strcmp(name, engine))
+        if (!(d = getenv("DISPLAY")) && (ENGINE_COMPARE(ELM_SOFTWARE_X11) ||
+                                         ENGINE_COMPARE(ELM_OPENGL_X11)))
+          eina_stringshare_replace(&(_elm_preferred_engine), ELM_WAYLAND_EGL);
+        else
+          eina_stringshare_replace(&(_elm_preferred_engine), engine);
+#undef ENGINE_COMPARE
+     }
    else
      {
         ELM_SAFE_FREE(_elm_preferred_engine, eina_stringshare_del);