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 275e42275f1b212ca234f1e6282ed7efc54ad2c6
Author: Christopher Michael <devilho...@comcast.net>
AuthorDate: Sun Aug 21 11:11:53 2022 -0400

    ecore-drm2: Add enum for rotation
---
 src/lib/ecore_drm2/Ecore_Drm2.h | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/src/lib/ecore_drm2/Ecore_Drm2.h b/src/lib/ecore_drm2/Ecore_Drm2.h
index 2bd340e644..6b880a0b0a 100644
--- a/src/lib/ecore_drm2/Ecore_Drm2.h
+++ b/src/lib/ecore_drm2/Ecore_Drm2.h
@@ -17,6 +17,17 @@
 
 # ifdef EFL_BETA_API_SUPPORT
 
+/* public enum for rotation */
+typedef enum _Ecore_Drm2_Rotation
+{
+   ECORE_DRM2_ROTATION_NORMAL = 1,
+   ECORE_DRM2_ROTATION_90 = 2,
+   ECORE_DRM2_ROTATION_180 = 4,
+   ECORE_DRM2_ROTATION_270 = 8,
+   ECORE_DRM2_ROTATION_REFLECT_X = 16,
+   ECORE_DRM2_ROTATION_REFLECT_Y = 32
+} Ecore_Drm2_Rotation;
+
 /* opaque structure to represent a drm device */
 typedef struct _Ecore_Drm2_Device Ecore_Drm2_Device;
 

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

Reply via email to