1#ifndef __MODESET_H_INCLUDED__
2#define __MODESET_H_INCLUDED__
3
4struct sp_dev;
5struct sp_crtc;
6
7int initialize_screens(struct sp_dev *dev);
8
9
10struct sp_plane *get_sp_plane(struct sp_dev *dev, struct sp_crtc *crtc);
11void put_sp_plane(struct sp_plane *plane);
12
13int set_sp_plane(struct sp_dev *dev, struct sp_plane *plane,
14		struct sp_crtc *crtc, int x, int y);
15
16int set_sp_plane_pset(struct sp_dev *dev, struct sp_plane *plane,
17		drmModePropertySetPtr pset, struct sp_crtc *crtc, int x, int y);
18
19#endif /* __MODESET_H_INCLUDED__ */
20