ecore-drm2: Add enum for rotation

This commit is contained in:
Christopher Michael 2022-08-21 11:11:53 -04:00
parent 75975addc0
commit 275e42275f
1 changed files with 11 additions and 0 deletions

View File

@ -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;