aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorScott Anderson <ascent12@hotmail.com>2017-09-30 22:22:26 +1300
committerScott Anderson <ascent12@hotmail.com>2017-09-30 22:22:26 +1300
commit22e77d919570c0a8d4a84878c377db8fa9a0edfb (patch)
tree09d8e2cb541e5f9b286c3e8e777de1f1aaffcaeb /include
parentec5b95e08f7549fc3628d9790d62f22d8b975300 (diff)
Rename backend to drm
Diffstat (limited to 'include')
-rw-r--r--include/backend/drm/iface.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/backend/drm/iface.h b/include/backend/drm/iface.h
index cf77f4d4..291b9a30 100644
--- a/include/backend/drm/iface.h
+++ b/include/backend/drm/iface.h
@@ -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;