Change iface prefix to suffix

This commit is contained in:
Scott Anderson 2017-10-02 21:44:33 +13:00
parent f6f9c40965
commit f193623ca1
5 changed files with 9 additions and 9 deletions

View File

@ -181,7 +181,7 @@ static bool atomic_crtc_move_cursor(struct wlr_drm_backend *drm,
return atomic_end(drm->fd, &atom);
}
const struct wlr_drm_interface iface_atomic = {
const struct wlr_drm_interface atomic_iface = {
.conn_enable = atomic_conn_enable,
.crtc_pageflip = atomic_crtc_pageflip,
.crtc_set_cursor = atomic_crtc_set_cursor,

View File

@ -32,13 +32,13 @@ bool wlr_drm_check_features(struct wlr_drm_backend *drm) {
if (getenv("WLR_DRM_NO_ATOMIC")) {
wlr_log(L_DEBUG, "WLR_DRM_NO_ATOMIC set, forcing legacy DRM interface");
drm->iface = &iface_legacy;
drm->iface = &legacy_iface;
} else if (drmSetClientCap(drm->fd, DRM_CLIENT_CAP_ATOMIC, 1)) {
wlr_log(L_DEBUG, "Atomic modesetting unsupported, using legacy DRM interface");
drm->iface = &iface_legacy;
drm->iface = &legacy_iface;
} else {
wlr_log(L_DEBUG, "Using atomic DRM interface");
drm->iface = &iface_atomic;
drm->iface = &atomic_iface;
}
return true;

View File

@ -58,7 +58,7 @@ bool legacy_crtc_move_cursor(struct wlr_drm_backend *drm,
return !drmModeMoveCursor(drm->fd, crtc->id, x, y);
}
const struct wlr_drm_interface iface_legacy = {
const struct wlr_drm_interface legacy_iface = {
.conn_enable = legacy_conn_enable,
.crtc_pageflip = legacy_crtc_pageflip,
.crtc_set_cursor = legacy_crtc_set_cursor,

View File

@ -3,10 +3,10 @@ backend_files = files(
'session/direct-ipc.c',
'session/direct.c',
'session/session.c',
'drm/atomic.c',
'drm/backend.c',
'drm/drm.c',
'drm/iface_atomic.c',
'drm/iface_legacy.c',
'drm/legacy.c',
'drm/properties.c',
'drm/renderer.c',
'drm/util.c',

View File

@ -29,7 +29,7 @@ struct wlr_drm_interface {
struct wlr_drm_crtc *crtc, int x, int y);
};
extern const struct wlr_drm_interface iface_atomic;
extern const struct wlr_drm_interface iface_legacy;
extern const struct wlr_drm_interface atomic_iface;
extern const struct wlr_drm_interface legacy_iface;
#endif