You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
529 B
19 lines
529 B
#ifndef __MODESET_H_INCLUDED__ |
|
#define __MODESET_H_INCLUDED__ |
|
|
|
struct sp_dev; |
|
struct sp_crtc; |
|
|
|
int initialize_screens(struct sp_dev *dev); |
|
|
|
|
|
struct sp_plane *get_sp_plane(struct sp_dev *dev, struct sp_crtc *crtc); |
|
void put_sp_plane(struct sp_plane *plane); |
|
|
|
int set_sp_plane(struct sp_dev *dev, struct sp_plane *plane, |
|
struct sp_crtc *crtc, int x, int y); |
|
|
|
int set_sp_plane_pset(struct sp_dev *dev, struct sp_plane *plane, |
|
drmModePropertySetPtr pset, struct sp_crtc *crtc, int x, int y); |
|
|
|
#endif /* __MODESET_H_INCLUDED__ */
|
|
|