aboutsummaryrefslogtreecommitdiffstats
path: root/sway/main.c
diff options
context:
space:
mode:
authorLibravatar Alexander Orzechowski <orzechowski.alexander@gmail.com>2022-04-30 17:09:44 -0400
committerLibravatar Kirill Primak <vyivel@eclair.cafe>2024-01-18 18:36:54 +0300
commit7c635b61fe2efd122d131951c26f0c89d25f56cc (patch)
treecc5d48bb1b029a121148cf83c72026d63eeedd84 /sway/main.c
parentFix SIGSEGV on surface destroy (diff)
downloadsway-7c635b61fe2efd122d131951c26f0c89d25f56cc.tar.gz
sway-7c635b61fe2efd122d131951c26f0c89d25f56cc.tar.zst
sway-7c635b61fe2efd122d131951c26f0c89d25f56cc.zip
remove damage debug options
Now that we use wlr_scene, wlroots handles these. If available use the wlroots debug options instead.
Diffstat (limited to 'sway/main.c')
-rw-r--r--sway/main.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/sway/main.c b/sway/main.c
index 65c85d31..21f19fc4 100644
--- a/sway/main.c
+++ b/sway/main.c
@@ -154,11 +154,7 @@ void restore_nofile_limit(void) {
154} 154}
155 155
156void enable_debug_flag(const char *flag) { 156void enable_debug_flag(const char *flag) {
157 if (strcmp(flag, "damage=highlight") == 0) { 157 if (strcmp(flag, "noatomic") == 0) {
158 debug.damage = DAMAGE_HIGHLIGHT;
159 } else if (strcmp(flag, "damage=rerender") == 0) {
160 debug.damage = DAMAGE_RERENDER;
161 } else if (strcmp(flag, "noatomic") == 0) {
162 debug.noatomic = true; 158 debug.noatomic = true;
163 } else if (strcmp(flag, "txn-wait") == 0) { 159 } else if (strcmp(flag, "txn-wait") == 0) {
164 debug.txn_wait = true; 160 debug.txn_wait = true;
@@ -166,8 +162,6 @@ void enable_debug_flag(const char *flag) {
166 debug.txn_timings = true; 162 debug.txn_timings = true;
167 } else if (strncmp(flag, "txn-timeout=", 12) == 0) { 163 } else if (strncmp(flag, "txn-timeout=", 12) == 0) {
168 server.txn_timeout_ms = atoi(&flag[12]); 164 server.txn_timeout_ms = atoi(&flag[12]);
169 } else if (strcmp(flag, "noscanout") == 0) {
170 debug.noscanout = true;
171 } else { 165 } else {
172 sway_log(SWAY_ERROR, "Unknown debug flag: %s", flag); 166 sway_log(SWAY_ERROR, "Unknown debug flag: %s", flag);
173 } 167 }