[PATCH] libdrm: Update plane type enum definitions to correspond to kernel change

Dhinakaran Pandiyan dhinakaran.pandiyan at intel.com
Fri Sep 23 06:33:21 UTC 2016


The positions of primary and overlay plane type enums in the kernel were
updated in

	    drm/doc: Polish for drm_plane.[hc]

So, making the change here as well.

Cc: Daniel Vetter <daniel.vetter at ffwll.ch>
Signed-off-by: Dhinakaran Pandiyan <dhinakaran.pandiyan at intel.com>
---
 xf86drmMode.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/xf86drmMode.h b/xf86drmMode.h
index 4de7bbb..718b34f 100644
--- a/xf86drmMode.h
+++ b/xf86drmMode.h
@@ -305,9 +305,9 @@ typedef struct _drmModeConnector {
 	uint32_t *encoders; /**< List of encoder ids */
 } drmModeConnector, *drmModeConnectorPtr;
 
-#define DRM_PLANE_TYPE_OVERLAY 0
-#define DRM_PLANE_TYPE_PRIMARY 1
-#define DRM_PLANE_TYPE_CURSOR  2
+#define DRM_PLANE_TYPE_PRIMARY 0
+#define DRM_PLANE_TYPE_CURSOR  1
+#define DRM_PLANE_TYPE_OVERLAY 2
 
 typedef struct _drmModeObjectProperties {
 	uint32_t count_props;
-- 
2.5.0



More information about the dri-devel mailing list