From 9e07d37320718bbabd4feb4ff151fcb3cfd9f333 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 27 Mar 2017 13:30:56 -0400 Subject: [PATCH] ecore-drm2: Add API function to set plane destination When we do an atomic commit, we need to know where to place a given plane (in the case of overlays) in relation to the CRTC, so provide an API function that can be used for that purpose. @feature Signed-off-by: Chris Michael --- src/lib/ecore_drm2/Ecore_Drm2.h | 14 ++++++++++++++ src/lib/ecore_drm2/ecore_drm2_plane.c | 11 +++++++++++ 2 files changed, 25 insertions(+) diff --git a/src/lib/ecore_drm2/Ecore_Drm2.h b/src/lib/ecore_drm2/Ecore_Drm2.h index 62eebc1..6f1296d 100644 --- a/src/lib/ecore_drm2/Ecore_Drm2.h +++ b/src/lib/ecore_drm2/Ecore_Drm2.h @@ -1008,6 +1008,20 @@ EAPI Ecore_Drm2_Fb *ecore_drm2_fb_dmabuf_import(int fd, int width, int height, i */ EAPI Ecore_Drm2_Plane *ecore_drm2_plane_assign(Ecore_Drm2_Output *output, Ecore_Drm2_Fb *fb); +/** + * Set plane destination values + * + * @param plane + * @param x + * @param y + * @param w + * @param h + * + * @ingroup Ecore_Drm2_Plane_Group + * @since 1.20 + */ +EAPI void ecore_drm2_plane_destination_set(Ecore_Drm2_Plane *plane, int x, int y, int w, int h); + # endif #endif diff --git a/src/lib/ecore_drm2/ecore_drm2_plane.c b/src/lib/ecore_drm2/ecore_drm2_plane.c index ef7d813..d22bda7 100644 --- a/src/lib/ecore_drm2/ecore_drm2_plane.c +++ b/src/lib/ecore_drm2/ecore_drm2_plane.c @@ -111,3 +111,14 @@ out: return NULL; #endif } + +EAPI void +ecore_drm2_plane_destination_set(Ecore_Drm2_Plane *plane, int x, int y, int w, int h) +{ + EINA_SAFETY_ON_NULL_RETURN(plane); + + plane->state->cx.value = x; + plane->state->cy.value = y; + plane->state->cw.value = w; + plane->state->ch.value = h; +} -- 2.7.4