mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
scene: introduce wlr_scene_buffer.events.outputs_update
This event is useful for e.g. sending the preferred buffer scale to the client.
This commit is contained in:
parent
42016fa262
commit
060df4c6c0
2 changed files with 4 additions and 0 deletions
|
@ -131,6 +131,7 @@ struct wlr_scene_buffer {
|
|||
struct wlr_buffer *buffer;
|
||||
|
||||
struct {
|
||||
struct wl_signal outputs_update;
|
||||
struct wl_signal output_enter; // struct wlr_scene_output
|
||||
struct wl_signal output_leave; // struct wlr_scene_output
|
||||
struct wl_signal output_present; // struct wlr_scene_output
|
||||
|
|
|
@ -370,6 +370,8 @@ static void update_node_update_outputs(struct wlr_scene_node *node,
|
|||
// if there are active outputs on this node, we should always have a primary
|
||||
// output
|
||||
assert(!scene_buffer->active_outputs || scene_buffer->primary_output);
|
||||
|
||||
wl_signal_emit_mutable(&scene_buffer->events.outputs_update, NULL);
|
||||
}
|
||||
|
||||
static bool scene_node_update_iterator(struct wlr_scene_node *node,
|
||||
|
@ -548,6 +550,7 @@ struct wlr_scene_buffer *wlr_scene_buffer_create(struct wlr_scene_tree *parent,
|
|||
scene_buffer->buffer = wlr_buffer_lock(buffer);
|
||||
}
|
||||
|
||||
wl_signal_init(&scene_buffer->events.outputs_update);
|
||||
wl_signal_init(&scene_buffer->events.output_enter);
|
||||
wl_signal_init(&scene_buffer->events.output_leave);
|
||||
wl_signal_init(&scene_buffer->events.output_present);
|
||||
|
|
Loading…
Reference in a new issue