From: Mike Blumenkrantz Date: Fri, 26 Jun 2015 00:04:01 +0000 (-0400) Subject: set shm engine for wl internal windows X-Git-Tag: upstream/0.20.0~708 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2bf57d79afca8fd98b1ec339bcc5b75152d35c4d;p=platform%2Fupstream%2Fenlightenment.git set shm engine for wl internal windows this seems to be necessary for now to prevent crashing --- diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 6c77a1a..9e5ca54 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -2607,8 +2607,11 @@ e_comp_wl_init(void) /* add event handlers to catch E events */ if (e_comp->comp_type != E_PIXMAP_TYPE_X) - if (e_randr2_init()) - e_randr2_screens_setup(-1, -1); + { + if (e_randr2_init()) + e_randr2_screens_setup(-1, -1); + elm_config_preferred_engine_set("wayland_shm"); + } E_LIST_HANDLER_APPEND(handlers, E_EVENT_RANDR_CHANGE, _e_comp_wl_cb_randr_change, NULL);