mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-05 13:29:47 -05:00
Rename backend to drm
This commit is contained in:
parent
ec5b95e08f
commit
22e77d9195
5 changed files with 210 additions and 215 deletions
|
|
@ -15,18 +15,18 @@ struct wlr_drm_crtc;
|
|||
// Used to provide atomic or legacy DRM functions
|
||||
struct wlr_drm_interface {
|
||||
// Enable or disable DPMS for output
|
||||
void (*conn_enable)(struct wlr_drm_backend *backend,
|
||||
struct wlr_drm_output *output, bool enable);
|
||||
void (*conn_enable)(struct wlr_drm_backend *drm,
|
||||
struct wlr_drm_output *output, bool enable);
|
||||
// Pageflip on crtc. If mode is non-NULL perform a full modeset using it.
|
||||
bool (*crtc_pageflip)(struct wlr_drm_backend *backend,
|
||||
struct wlr_drm_output *output, struct wlr_drm_crtc *crtc,
|
||||
uint32_t fb_id, drmModeModeInfo *mode);
|
||||
bool (*crtc_pageflip)(struct wlr_drm_backend *drm,
|
||||
struct wlr_drm_output *output, struct wlr_drm_crtc *crtc,
|
||||
uint32_t fb_id, drmModeModeInfo *mode);
|
||||
// Enable the cursor buffer on crtc. Set bo to NULL to disable
|
||||
bool (*crtc_set_cursor)(struct wlr_drm_backend *backend,
|
||||
struct wlr_drm_crtc *crtc, struct gbm_bo *bo);
|
||||
bool (*crtc_set_cursor)(struct wlr_drm_backend *drm,
|
||||
struct wlr_drm_crtc *crtc, struct gbm_bo *bo);
|
||||
// Move the cursor on crtc
|
||||
bool (*crtc_move_cursor)(struct wlr_drm_backend *backend,
|
||||
struct wlr_drm_crtc *crtc, int x, int y);
|
||||
bool (*crtc_move_cursor)(struct wlr_drm_backend *drm,
|
||||
struct wlr_drm_crtc *crtc, int x, int y);
|
||||
};
|
||||
|
||||
extern const struct wlr_drm_interface iface_atomic;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue