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 36cfcd91c1decd722e001729bb5aa0b429e4ab21
Author: Christopher Michael <devilho...@comcast.net>
AuthorDate: Thu Oct 10 11:59:33 2024 -0400
ecore_drm2: Remove ecore_drm2_display_state_mode
Setting display mode is actually done via crtc anyway, so no need for
this display_state_change for mode
---
src/lib/ecore_drm2/ecore_drm2_private.h | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/src/lib/ecore_drm2/ecore_drm2_private.h b/src/lib/ecore_drm2/ecore_drm2_private.h
index 927930f7cd..2ee12051fb 100644
--- a/src/lib/ecore_drm2/ecore_drm2_private.h
+++ b/src/lib/ecore_drm2/ecore_drm2_private.h
@@ -102,10 +102,9 @@ typedef enum _Ecore_Drm2_Display_State_Changes
ECORE_DRM2_DISPLAY_STATE_GAMMA = (1 << 0),
ECORE_DRM2_DISPLAY_STATE_ROTATION = (1 << 1),
ECORE_DRM2_DISPLAY_STATE_BACKLIGHT = (1 << 2),
- ECORE_DRM2_DISPLAY_STATE_MODE = (1 << 3),
- ECORE_DRM2_DISPLAY_STATE_PRIMARY = (1 << 4),
- ECORE_DRM2_DISPLAY_STATE_ENABLED = (1 << 5),
- ECORE_DRM2_DISPLAY_STATE_POSITION = (1 << 6),
+ 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_Changes;
typedef struct _Ecore_Drm2_Atomic_Blob
@@ -215,7 +214,6 @@ typedef struct _Ecore_Drm2_Display_State
Ecore_Drm2_Display_Mode *mode;
Eina_Bool primary : 1;
- Eina_Bool enabled : 1;
} Ecore_Drm2_Display_State;
/* opaque API structures */
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.