devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f485b451ce7993b6ab66d33ad0bbfd096d54a8ef

commit f485b451ce7993b6ab66d33ad0bbfd096d54a8ef
Author: Chris Michael <cp.mich...@samsung.com>
Date:   Wed Sep 30 13:13:59 2015 -0400

    ecore-evas: Add function to return Ecore_Wl2_Window
    
    Signed-off-by: Chris Michael <cp.mich...@samsung.com>
---
 src/lib/ecore_evas/ecore_evas.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/src/lib/ecore_evas/ecore_evas.c b/src/lib/ecore_evas/ecore_evas.c
index f0a784a..befa11b 100644
--- a/src/lib/ecore_evas/ecore_evas.c
+++ b/src/lib/ecore_evas/ecore_evas.c
@@ -3993,6 +3993,16 @@ ecore_evas_cocoa_window_get(const Ecore_Evas *ee)
    return iface->window_get(ee);
 }
 
+EAPI Ecore_Wl2_Window *
+ecore_evas_wayland_window_get2(const Ecore_Evas *ee)
+{
+   Ecore_Evas_Interface_Wayland *iface;
+   iface = (Ecore_Evas_Interface_Wayland *)_ecore_evas_interface_get(ee, 
"wayland");
+   EINA_SAFETY_ON_NULL_RETURN_VAL(iface, NULL);
+
+   return iface->window_get2(ee);
+}
+
 EAPI Ecore_Evas *
 ecore_evas_drm_new(const char *disp_name, unsigned int parent,
                    int x, int y, int w, int h)

-- 


Reply via email to