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 238b7b536bd560e8d2bda5fa4e4485bb242ed0ff
Author: Christopher Michael <devilho...@comcast.net>
AuthorDate: Sun Aug 3 13:23:54 2025 -0500
ecore_drm2: Apply connector crtc changes
---
src/lib/ecore_drm2/ecore_drm2_connectors.c | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/src/lib/ecore_drm2/ecore_drm2_connectors.c b/src/lib/ecore_drm2/ecore_drm2_connectors.c
index 0390c34e10..0f7b7d8f4a 100644
--- a/src/lib/ecore_drm2/ecore_drm2_connectors.c
+++ b/src/lib/ecore_drm2/ecore_drm2_connectors.c
@@ -285,7 +285,15 @@ _ecore_drm2_connectors_changes_apply(Ecore_Drm2_Connector *conn)
if (pstate->changes & ECORE_DRM2_CONNECTOR_STATE_CRTC)
{
- /* TODO: set crtc */
+ ret = sym_drmModeConnectorSetProperty(conn->fd, conn->id,
+ pstate->crtc.id,
+ pstate->crtc.value);
+ if (ret < 0)
+ {
+ ERR("Failed to set connector crtc id: %m");
+ return EINA_FALSE;
+ }
+
pstate->changes &= ~ECORE_DRM2_CONNECTOR_STATE_CRTC;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.