diff options
author | Simon Ser <contact@emersion.fr> | 2022-12-01 10:13:12 +0100 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2022-12-01 20:05:04 +0000 |
commit | c8eb24d30e18c165728b8788a10716611c3b633d (patch) | |
tree | c686c78301f301891947510229b6bfa41c8099b6 /include/wlr | |
parent | 4287f70dc325877829286eb8e0ecf1723465230a (diff) |
output: drop enable/mode events
The backend no longer changes the output state behind the
compositor's back. Instead, compositors can listen to the "commit"
event and check for WLR_OUTPUT_STATE_ENABLED/WLR_OUTPUT_STATE_MODE.
Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/2300
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_output.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h index cf75d864..45a93d47 100644 --- a/include/wlr/types/wlr_output.h +++ b/include/wlr/types/wlr_output.h @@ -175,8 +175,6 @@ struct wlr_output { struct wl_signal present; // wlr_output_event_present // Emitted after a client bound the wl_output global struct wl_signal bind; // wlr_output_event_bind - struct wl_signal enable; - struct wl_signal mode; struct wl_signal description; struct wl_signal request_state; struct wl_signal destroy; |