Add a structure for hardware plane (used in drm compositor).

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-04-17 09:27:15 +01:00
parent 256d1386c1
commit 6afda6d9bd
1 changed files with 8 additions and 0 deletions

View File

@ -40,6 +40,7 @@ typedef struct _E_Wayland_Input E_Wayland_Input;
typedef struct _E_Wayland_Compositor E_Wayland_Compositor;
typedef struct _E_Wayland_Output E_Wayland_Output;
typedef struct _E_Wayland_Ouput_Mode E_Wayland_Output_Mode;
typedef struct _E_Wayland_Plane E_Wayland_Plane;
enum _E_Wayland_Shell_Surface_Type
{
@ -342,6 +343,13 @@ struct _E_Wayland_Output_Mode
unsigned int refresh;
};
struct _E_Wayland_Plane
{
pixman_region32_t damage, clip;
Evas_Coord x, y;
struct wl_list link;
};
/* external variables */
extern E_Wayland_Compositor *_e_wl_comp;