derekf pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=579b6d69b305a89657d06760c5374e4d61159e93
commit 579b6d69b305a89657d06760c5374e4d61159e93 Author: Derek Foreman <[email protected]> Date: Tue Nov 14 14:40:47 2017 -0600 ecore_wl2: Add a second sync for dmabuf formats While we don't yet use these, we should, so let's make sure they're available before we start making windows. --- src/lib/ecore_wl2/ecore_wl2_display.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/ecore_wl2/ecore_wl2_display.c b/src/lib/ecore_wl2/ecore_wl2_display.c index b6c6ef70cb..9d5a41a141 100644 --- a/src/lib/ecore_wl2/ecore_wl2_display.c +++ b/src/lib/ecore_wl2/ecore_wl2_display.c @@ -283,6 +283,7 @@ _cb_global_add(void *data, struct wl_registry *registry, unsigned int id, const ewd->wl.dmabuf = wl_registry_bind(registry, id, &zwp_linux_dmabuf_v1_interface, 2); zwp_linux_dmabuf_v1_add_listener(ewd->wl.dmabuf, &_dmabuf_listener, ewd); + _ecore_wl2_display_sync_add(ewd); } else if (!strcmp(interface, "wl_data_device_manager")) { --
