ecore-wl2: Add API to return the compositor object from a given display

This patch adds a convenience function to get the wl_compositor object
from a given display

@feature
This commit is contained in:
Christopher Michael 2019-11-19 09:23:18 -05:00
parent 7fb23c2da1
commit ab51bbeeef
2 changed files with 19 additions and 0 deletions

View File

@ -742,6 +742,18 @@ EAPI Ecore_Wl2_Window *ecore_wl2_display_window_find_by_surface(Ecore_Wl2_Displa
*/
EAPI Ecore_Wl2_Display *ecore_wl2_connected_display_get(const char *name);
/**
* Gets the wl_compositor which belongs to this display
*
* @param display The Ecore_Wl2_Display to get the compositor of
*
* @return The wl_compositor associated with this display
*
* @ingroup Ecore_Wl2_Display_Group
* @since 1.24
*/
EAPI struct wl_compositor *ecore_wl2_display_compositor_get(Ecore_Wl2_Display *display);
/**
* @defgroup Ecore_Wl2_Window_Group Wayland Library Window Functions
* @ingroup Ecore_Wl2_Group

View File

@ -1200,3 +1200,10 @@ ecore_wl2_connected_display_get(const char *name)
return ewd;
}
EAPI struct wl_compositor *
ecore_wl2_display_compositor_get(Ecore_Wl2_Display *display)
{
EINA_SAFETY_ON_NULL_RETURN_VAL(display, NULL);
return display->wl.compositor;
}