aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/output.h
diff options
context:
space:
mode:
authorLibravatar Simon Ser <contact@emersion.fr>2022-06-23 21:03:32 +0200
committerLibravatar Kirill Primak <vyivel@eclair.cafe>2022-07-04 21:58:24 +0300
commitb69d637f7a34e239e48a4267ae94a5e7087b5834 (patch)
tree63e33a9a15a08c5ebe9bf68183a10bad86997ce7 /include/sway/output.h
parentconfig.in: switch to `output power` (diff)
downloadsway-b69d637f7a34e239e48a4267ae94a5e7087b5834.tar.gz
sway-b69d637f7a34e239e48a4267ae94a5e7087b5834.tar.zst
sway-b69d637f7a34e239e48a4267ae94a5e7087b5834.zip
Remove internal references to DPMS
While at it, use an int for the config field, just like we do for all other fields.
Diffstat (limited to 'include/sway/output.h')
-rw-r--r--include/sway/output.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/output.h b/include/sway/output.h
index 26b9709f..6d8319bf 100644
--- a/include/sway/output.h
+++ b/include/sway/output.h
@@ -32,7 +32,7 @@ struct sway_output {
32 int width, height; // transformed buffer size 32 int width, height; // transformed buffer size
33 enum wl_output_subpixel detected_subpixel; 33 enum wl_output_subpixel detected_subpixel;
34 enum scale_filter_mode scale_filter; 34 enum scale_filter_mode scale_filter;
35 // last applied mode when the output is DPMS'ed 35 // last applied mode when the output is powered off
36 struct wlr_output_mode *current_mode; 36 struct wlr_output_mode *current_mode;
37 37
38 bool enabling, enabled; 38 bool enabling, enabled;