diff --git a/src/lib/ecore_drm2/Ecore_Drm2.h b/src/lib/ecore_drm2/Ecore_Drm2.h index 62eebc1e52..6f1296d204 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 ef7d813241..d22bda76d2 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; +}