remove opengl from wayland in favor of cairo

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

View file

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