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 fcf05b37a74670873765864594f340e922a5127a
Author: Christopher Michael <[email protected]>
AuthorDate: Fri Feb 20 10:26:14 2026 -0600
ecore_drm2: Add API function to set keyboard info
---
src/lib/ecore_drm2/Ecore_Drm2.h | 1 +
src/lib/ecore_drm2/ecore_drm2_device.c | 8 ++++++++
2 files changed, 9 insertions(+)
diff --git a/src/lib/ecore_drm2/Ecore_Drm2.h b/src/lib/ecore_drm2/Ecore_Drm2.h
index 670af1773f..1f23f83662 100644
--- a/src/lib/ecore_drm2/Ecore_Drm2.h
+++ b/src/lib/ecore_drm2/Ecore_Drm2.h
@@ -135,6 +135,7 @@ EAPI void ecore_drm2_device_window_set(Ecore_Drm2_Device *dev, unsigned int wind
EAPI Eina_Bool ecore_drm2_device_vblank_supported(Ecore_Drm2_Device *dev);
EAPI const Eina_List *ecore_drm2_device_displays_get(Ecore_Drm2_Device *dev);
EAPI int ecore_drm2_device_context_event_handle(Ecore_Drm2_Device *dev, Ecore_Drm2_Event_Context *drmctx);
+EAPI void ecore_drm2_device_keyboard_info_set(Ecore_Drm2_Device *dev, void *context, void *keymap, int group);
/* Display API functions */
EAPI char *ecore_drm2_display_name_get(Ecore_Drm2_Display *disp);
diff --git a/src/lib/ecore_drm2/ecore_drm2_device.c b/src/lib/ecore_drm2/ecore_drm2_device.c
index 346b928f4e..6e7b2b310f 100644
--- a/src/lib/ecore_drm2/ecore_drm2_device.c
+++ b/src/lib/ecore_drm2/ecore_drm2_device.c
@@ -546,3 +546,11 @@ ecore_drm2_device_context_event_handle(Ecore_Drm2_Device *dev, Ecore_Drm2_Event_
return sym_drmHandleEvent(dev->fd, &ctx);
}
+
+EAPI void
+ecore_drm2_device_keyboard_info_set(Ecore_Drm2_Device *dev, void *context, void *keymap, int group)
+{
+ EINA_SAFETY_ON_NULL_RETURN(dev);
+ EINA_SAFETY_ON_NULL_RETURN(dev->em);
+ elput_input_keyboard_info_set(dev->em, context, keymap, group);
+}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.