Merge branch 'tex-signals' into 'master'

render/texture: Emit signals on destroy and update

See merge request wlroots/wlroots!5351
This commit is contained in:
Guido Günther 2026-06-04 14:19:27 +00:00
commit 801a1b8b63
2 changed files with 21 additions and 1 deletions

View file

@ -24,6 +24,11 @@ struct wlr_texture {
uint32_t width, height;
struct wlr_renderer *renderer;
struct {
struct wl_signal destroy;
struct wl_signal updated;
} events;
};
struct wlr_texture_read_pixels_options {