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 a9495db87f2179a3a00ed597b7db2d1e27bf529e
Author: Christopher Michael <devilho...@comcast.net>
AuthorDate: Wed Nov 6 07:28:25 2024 -0500
ecore_drm2: Remove ECORE_DRM2_DISPLAY_STATE_ENABLED as a valid change
The enabled state of a dispay is already handled via crtc 'active' so
we do not need this listed in the changes enum
---
src/lib/ecore_drm2/ecore_drm2_private.h | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/lib/ecore_drm2/ecore_drm2_private.h b/src/lib/ecore_drm2/ecore_drm2_private.h
index 9f50e27ea8..3b97069ba3 100644
--- a/src/lib/ecore_drm2/ecore_drm2_private.h
+++ b/src/lib/ecore_drm2/ecore_drm2_private.h
@@ -103,8 +103,7 @@ typedef enum _Ecore_Drm2_Display_State_Changes
ECORE_DRM2_DISPLAY_STATE_ROTATION = (1 << 1),
ECORE_DRM2_DISPLAY_STATE_BACKLIGHT = (1 << 2),
ECORE_DRM2_DISPLAY_STATE_PRIMARY = (1 << 3),
- ECORE_DRM2_DISPLAY_STATE_ENABLED = (1 << 4),
- ECORE_DRM2_DISPLAY_STATE_POSITION = (1 << 5),
+ ECORE_DRM2_DISPLAY_STATE_POSITION = (1 << 4),
} Ecore_Drm2_Display_State_Changes;
typedef struct _Ecore_Drm2_Atomic_Blob
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.