remove opengl from wayland in favor of cairo

This commit is contained in:
IoIxD
2025-12-17 19:14:54 -07:00
parent d117241ba7
commit 320de34ce8
8 changed files with 242 additions and 404 deletions

View File

@@ -1,3 +1,8 @@
use_backend("x11");
if (param_get("experimental-wayland")) {
use_backend("wayland", "x11");
}
else {
use_backend("x11");
}
1;