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 c9db1e78752cfef2ec576c7a6f9345c2d333cf99
Author: Christopher Michael <devilho...@comcast.net>
AuthorDate: Sun Aug 21 08:58:18 2022 -0400

    ecore-drm2: Add start of Ecore_Drm2_Output structure
---
 src/lib/ecore_drm2/Ecore_Drm2.h         | 3 +++
 src/lib/ecore_drm2/ecore_drm2_private.h | 5 +++++
 2 files changed, 8 insertions(+)

diff --git a/src/lib/ecore_drm2/Ecore_Drm2.h b/src/lib/ecore_drm2/Ecore_Drm2.h
index b3dc265df9..2bd340e644 100644
--- a/src/lib/ecore_drm2/Ecore_Drm2.h
+++ b/src/lib/ecore_drm2/Ecore_Drm2.h
@@ -20,6 +20,9 @@
 /* opaque structure to represent a drm device */
 typedef struct _Ecore_Drm2_Device Ecore_Drm2_Device;
 
+/* opaque structure to represent a drm output */
+typedef struct _Ecore_Drm2_Output Ecore_Drm2_Output;
+
 /* API functions */
 EAPI int ecore_drm2_init(void);
 EAPI int ecore_drm2_shutdown(void);
diff --git a/src/lib/ecore_drm2/ecore_drm2_private.h b/src/lib/ecore_drm2/ecore_drm2_private.h
index 06f53fb0d2..8b53561174 100644
--- a/src/lib/ecore_drm2/ecore_drm2_private.h
+++ b/src/lib/ecore_drm2/ecore_drm2_private.h
@@ -72,6 +72,11 @@ struct _Ecore_Drm2_Device
    int fd;
 };
 
+struct _Ecore_Drm2_Output
+{
+   Eina_Stringshare *name, *make, *model, *serial;
+};
+
 /* external drm function prototypes (for dlopen) */
 extern void *(*sym_drmModeGetResources)(int fd);
 extern void (*sym_drmModeFreeResources)(drmModeResPtr ptr);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to