Drop wl_drm again

In [1] we re-introduced a debug flag to enable wl_drm. Time has
passed and Xwayland + VA-API + amdvlk now all support
linux-dmabuf-v1.

[1]: https://github.com/swaywm/sway/pull/7916
This commit is contained in:
Simon Ser 2024-07-13 13:13:08 +02:00
parent 0153bc92ab
commit 1d4632f97f
3 changed files with 0 additions and 7 deletions

View file

@ -181,8 +181,6 @@ void enable_debug_flag(const char *flag) {
debug.txn_timings = true;
} else if (has_prefix(flag, "txn-timeout=")) {
server.txn_timeout_ms = atoi(&flag[strlen("txn-timeout=")]);
} else if (strcmp(flag, "legacy-wl-drm") == 0) {
debug.legacy_wl_drm = true;
} else {
sway_log(SWAY_ERROR, "Unknown debug flag: %s", flag);
}