wayland: add wayl_win_subsurface_new() and wayl_win_subsurface_destroy()

These are utility functions to create a Wayland subsurface associated
with the window.
This commit is contained in:
Daniel Eklöf 2021-02-12 11:29:36 +01:00
parent 8658ab4bed
commit bb4d9a5fd3
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 60 additions and 1 deletions

View file

@ -350,6 +350,11 @@ struct monitor {
bool use_output_release;
};
struct wl_surf_subsurf {
struct wl_surface *surf;
struct wl_subsurface *sub;
};
struct wl_url {
const struct url *url;
struct wl_surface *surf;
@ -453,10 +458,17 @@ struct wayland {
struct wayland *wayl_init(const struct config *conf, struct fdm *fdm);
void wayl_destroy(struct wayland *wayl);
bool wayl_reload_xcursor_theme(struct seat *seat, int new_scale);
void wayl_flush(struct wayland *wayl);
void wayl_roundtrip(struct wayland *wayl);
struct wl_window *wayl_win_init(struct terminal *term);
void wayl_win_destroy(struct wl_window *win);
bool wayl_reload_xcursor_theme(struct seat *seat, int new_scale);
bool wayl_win_subsurface_new(
struct wl_window *win, struct wl_surf_subsurf *surf);
bool wayl_win_subsurface_new_with_custom_parent(
struct wl_window *win, struct wl_surface *parent,
struct wl_surf_subsurf *surf);
void wayl_win_subsurface_destroy(struct wl_surf_subsurf *surf);