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

@ -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;