mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
Add wlr_output enable event
This commit is contained in:
parent
771263380c
commit
d9ecfbaf32
2 changed files with 4 additions and 0 deletions
|
|
@ -146,6 +146,8 @@ void wlr_output_update_enabled(struct wlr_output *output, bool enabled) {
|
|||
} else {
|
||||
wlr_output_destroy_global(output);
|
||||
}
|
||||
|
||||
wl_signal_emit(&output->events.enable, output);
|
||||
}
|
||||
|
||||
static void wlr_output_update_matrix(struct wlr_output *output) {
|
||||
|
|
@ -269,6 +271,7 @@ void wlr_output_init(struct wlr_output *output, struct wlr_backend *backend,
|
|||
wl_signal_init(&output->events.frame);
|
||||
wl_signal_init(&output->events.swap_buffers);
|
||||
wl_signal_init(&output->events.resolution);
|
||||
wl_signal_init(&output->events.enable);
|
||||
wl_signal_init(&output->events.scale);
|
||||
wl_signal_init(&output->events.transform);
|
||||
wl_signal_init(&output->events.destroy);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue