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 35e896477628f83d83368228337e220d36db89b8
Author: Christopher Michael <[email protected]>
AuthorDate: Fri Feb 20 10:27:55 2026 -0600
ecore_drm2: Add API to set keyboard group
---
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 1f23f83662..6c689e38be 100644
--- a/src/lib/ecore_drm2/Ecore_Drm2.h
+++ b/src/lib/ecore_drm2/Ecore_Drm2.h
@@ -136,6 +136,7 @@ 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);
+EAPI void ecore_drm2_device_keyboard_group_set(Ecore_Drm2_Device *dev, 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 6e7b2b310f..ae2d1dcd82 100644
--- a/src/lib/ecore_drm2/ecore_drm2_device.c
+++ b/src/lib/ecore_drm2/ecore_drm2_device.c
@@ -554,3 +554,11 @@ ecore_drm2_device_keyboard_info_set(Ecore_Drm2_Device *dev, void *context, void
EINA_SAFETY_ON_NULL_RETURN(dev->em);
elput_input_keyboard_info_set(dev->em, context, keymap, group);
}
+
+EAPI void
+ecore_drm2_device_keyboard_group_set(Ecore_Drm2_Device *dev, int group)
+{
+ EINA_SAFETY_ON_NULL_RETURN(dev);
+ EINA_SAFETY_ON_NULL_RETURN(dev->em);
+ elput_input_keyboard_group_set(dev->em, group);
+}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.