0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef __OMAPDRM_PLANE_H__
0010 #define __OMAPDRM_PLANE_H__
0011
0012 #include <linux/types.h>
0013
0014 enum drm_plane_type;
0015
0016 struct drm_device;
0017 struct drm_mode_object;
0018 struct drm_plane;
0019
0020 struct drm_plane *omap_plane_init(struct drm_device *dev,
0021 int idx, enum drm_plane_type type,
0022 u32 possible_crtcs);
0023 void omap_plane_install_properties(struct drm_plane *plane,
0024 struct drm_mode_object *obj);
0025 bool is_omap_plane_dual_overlay(struct drm_plane_state *state);
0026
0027 #endif