ecore-drm2: Expose Ecore_Drm2_Rotation enum
authorChris Michael <cp.michael@samsung.com>
Wed, 18 Jan 2017 15:06:20 +0000 (10:06 -0500)
committerChris Michael <cp.michael@samsung.com>
Wed, 18 Jan 2017 15:06:20 +0000 (10:06 -0500)
As we will need these values when doing rotation checks inside wl_drm
module (for randr rotation support), let's move them out of the
private header and expose them in Ecore_Drm2.h

Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/lib/ecore_drm2/Ecore_Drm2.h
src/lib/ecore_drm2/ecore_drm2_private.h

index 8926314..2a97277 100644 (file)
 
 # ifdef EFL_BETA_API_SUPPORT
 
+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;
 
index 6ea5b02..966311b 100644 (file)
@@ -677,16 +677,6 @@ typedef enum _Ecore_Drm2_Transform
    ECORE_DRM2_TRANSFORM_FLIPPED_270
 } Ecore_Drm2_Transform;
 
-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;
-
 struct _Ecore_Drm2_Fb
 {
    int fd;