aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2023-12-12 15:18:08 +0100
committerFurkan Sahin <furkan-dev@proton.me>2023-12-12 15:18:08 +0100
commit654320aa6bf622d2a87e8b22b5daa32b6279d148 (patch)
treea6d4b3d8bad59cf5cca7b324462cd6da4fa9b50d
parentea4eab1e1da50565dfdc1dcdd18c507295cbe59f (diff)
Drop fglrx detection
This ancient driver doesn't do KMS. So we were never able to run with it anyways.
-rw-r--r--sway/main.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/sway/main.c b/sway/main.c
index 23689757..0db116d3 100644
--- a/sway/main.c
+++ b/sway/main.c
@@ -70,18 +70,6 @@ void detect_proprietary(int allow_unsupported_gpu) {
}
break;
}
- if (strstr(line, "fglrx")) {
- if (allow_unsupported_gpu) {
- sway_log(SWAY_ERROR,
- "!!! Proprietary AMD drivers are in use !!!");
- } else {
- sway_log(SWAY_ERROR, "Proprietary AMD drivers do NOT support "
- "Wayland. Use radeon. To try anyway, launch sway with "
- "--unsupported-gpu and DO NOT report issues.");
- exit(EXIT_FAILURE);
- }
- break;
- }
}
free(line);
fclose(f);