[ecore_evas] Fix TC fail issue with evas_gl 72/63972/3 accepted/tizen/common/20160329.143219 accepted/tizen/ivi/20160329.121613 accepted/tizen/mobile/20160329.121527 accepted/tizen/tv/20160329.121543 accepted/tizen/wearable/20160329.121558 submit/tizen/20160329.095417
authorjiin.moon <jiin.moon@samsung.com>
Tue, 29 Mar 2016 06:09:59 +0000 (15:09 +0900)
committerSungTaek Hong <sth253.hong@samsung.com>
Tue, 29 Mar 2016 08:21:12 +0000 (17:21 +0900)
Change the priority of the wayland
@tizen_fix

Change-Id: Ie047e7c11b1371fa81d4e48f4238e8db2af12b73

src/lib/ecore_evas/ecore_evas.c

index b3f4b2b..856fb0d 100644 (file)
@@ -763,6 +763,11 @@ _ecore_evas_constructor_ews(int x, int y, int w, int h, const char *extra_option
 /* note: keep sorted by priority, highest first */
 static const struct ecore_evas_engine _engines[] = {
   /* unix */
+
+/*TIZEN_ONLY(20160329): Change the priority of the wayland */
+  {"wayland_egl", _ecore_evas_constructor_wayland_egl},
+  {"wayland_shm", _ecore_evas_constructor_wayland_shm},
+// ** //
   {"software_x11", _ecore_evas_constructor_software_x11},
   {"opengl_x11", _ecore_evas_constructor_opengl_x11},
   {"fb", _ecore_evas_constructor_fb},
@@ -772,8 +777,10 @@ static const struct ecore_evas_engine _engines[] = {
   {"opengl_glew", _ecore_evas_constructor_opengl_glew},
   {"opengl_cocoa", _ecore_evas_constructor_cocoa},
   {"psl1ght", _ecore_evas_constructor_psl1ght},
+/* TIZEN ONLY(20160329): Change the priority of the wayland
   {"wayland_shm", _ecore_evas_constructor_wayland_shm},
   {"wayland_egl", _ecore_evas_constructor_wayland_egl},
+*/
   {"drm", _ecore_evas_constructor_drm},
   {"gl_drm", _ecore_evas_constructor_opengl_drm},
   {"opengl_sdl", _ecore_evas_constructor_opengl_sdl},