This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch devs/devilhorns/apos
in repository efl.

View the commit online.

commit f2aaab737c73ffdaaec5e1e06e2a63f5c2db075e
Author: Christopher Michael <[email protected]>
AuthorDate: Fri Aug 15 09:18:44 2025 -0500

    ecore_drm2: When filling plane state, record the FB_DAMAGE_CLIPS
    property id
---
 src/lib/ecore_drm2/ecore_drm2_planes.c  | 2 ++
 src/lib/ecore_drm2/ecore_drm2_private.h | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/lib/ecore_drm2/ecore_drm2_planes.c b/src/lib/ecore_drm2/ecore_drm2_planes.c
index 228818d8f8..f887be2dd8 100644
--- a/src/lib/ecore_drm2/ecore_drm2_planes.c
+++ b/src/lib/ecore_drm2/ecore_drm2_planes.c
@@ -197,6 +197,8 @@ _ecore_drm2_plane_state_fill(Ecore_Drm2_Plane *plane)
                   pstate->zpos.max = prop->values[1];
                }
           }
+        else if (!strcmp(prop->name, "FB_DAMAGE_CLIPS"))
+          pstate->fb_dmg_clips.id = prop->prop_id;
 
         sym_drmModeFreeProperty(prop);
      }
diff --git a/src/lib/ecore_drm2/ecore_drm2_private.h b/src/lib/ecore_drm2/ecore_drm2_private.h
index d1710ffc93..23c9ea9609 100644
--- a/src/lib/ecore_drm2/ecore_drm2_private.h
+++ b/src/lib/ecore_drm2/ecore_drm2_private.h
@@ -180,13 +180,13 @@ typedef struct _Ecore_Drm2_Plane_State
    Ecore_Drm2_Atomic_Property cx, cy, cw, ch;
    Ecore_Drm2_Atomic_Property rotation;
    Ecore_Drm2_Atomic_Range zpos;
+   Ecore_Drm2_Atomic_Blob fb_dmg_clips;
 
    /* TODO ?? */
    /* Ecore_Drm2_Atomic_Property IN_FENCE_FD; */
    /* Ecore_Drm2_Atomic_Property IN_FORMATS; */
    /* Ecore_Drm2_Atomic_Property COLOR_ENCODING; */
    /* Ecore_Drm2_Atomic_Property COLOR_RANGE; */
-   /* Ecore_Drm2_Atomic_Blob FB_DAMAGE_CLIPS; */
 
    /* NB: these are not part of an atomic state, but we store these here
     * so that we do not have to refetch properties when iterating planes */

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to