mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-01 22:58:38 -04:00
compositor: add wlr_surface.events.precommit
This commit is contained in:
parent
bb0fd29252
commit
512deebd82
2 changed files with 4 additions and 0 deletions
|
|
@ -438,6 +438,8 @@ static void surface_commit_state(struct wlr_surface *surface,
|
|||
surface->role->precommit(surface, next);
|
||||
}
|
||||
|
||||
wl_signal_emit_mutable(&surface->events.precommit, next);
|
||||
|
||||
bool invalid_buffer = next->committed & WLR_SURFACE_STATE_BUFFER;
|
||||
|
||||
surface_update_damage(&surface->buffer_damage, &surface->current, next);
|
||||
|
|
@ -692,6 +694,7 @@ static struct wlr_surface *surface_create(struct wl_client *client,
|
|||
surface->pending.seq = 1;
|
||||
|
||||
wl_signal_init(&surface->events.client_commit);
|
||||
wl_signal_init(&surface->events.precommit);
|
||||
wl_signal_init(&surface->events.commit);
|
||||
wl_signal_init(&surface->events.destroy);
|
||||
wl_signal_init(&surface->events.new_subsurface);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue