mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
backend/session: Remove noop backend
This is instead delegated to libseat.
This commit is contained in:
parent
d037c2dddc
commit
3f87c2caea
3 changed files with 0 additions and 55 deletions
|
|
@ -21,7 +21,6 @@
|
|||
#define WAIT_GPU_TIMEOUT 10000 // ms
|
||||
|
||||
extern const struct session_impl session_libseat;
|
||||
extern const struct session_impl session_noop;
|
||||
|
||||
static const struct session_impl *const impls[] = {
|
||||
&session_libseat,
|
||||
|
|
@ -109,8 +108,6 @@ struct wlr_session *wlr_session_create(struct wl_display *disp) {
|
|||
if (env_wlr_session) {
|
||||
if (strcmp(env_wlr_session, "libseat") == 0) {
|
||||
session = session_libseat.create(disp);
|
||||
} else if (strcmp(env_wlr_session, "noop") == 0) {
|
||||
session = session_noop.create(disp);
|
||||
} else {
|
||||
wlr_log(WLR_ERROR, "Unsupported WLR_SESSION: %s",
|
||||
env_wlr_session);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue