mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-19 08:56:27 -05:00
Change iface prefix to suffix
This commit is contained in:
parent
f6f9c40965
commit
f193623ca1
5 changed files with 9 additions and 9 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue