mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
40 lines
995 B
C
40 lines
995 B
C
#ifndef _EXAMPLE_COMPOSITOR_H
|
|
#define _EXAMPLE_COMPOSITOR_H
|
|
#include <wayland-server.h>
|
|
#include <wlr/render.h>
|
|
|
|
struct wl_compositor_state {
|
|
struct wl_global *wl_global;
|
|
struct wl_list wl_resources;
|
|
struct wlr_renderer *renderer;
|
|
struct wl_list surfaces;
|
|
struct wl_listener destroy_surface_listener;
|
|
};
|
|
|
|
void wl_compositor_init(struct wl_display *display,
|
|
struct wl_compositor_state *state, struct wlr_renderer *renderer);
|
|
|
|
struct wlr_surface;
|
|
void wl_compositor_surface_destroyed(struct wl_compositor_state *compositor,
|
|
struct wlr_surface *surface);
|
|
|
|
struct wl_shell_state {
|
|
struct wl_global *wl_global;
|
|
struct wl_list wl_resources;
|
|
};
|
|
|
|
struct xdg_shell_state {
|
|
struct wl_global *wl_global;
|
|
struct wl_list wl_resources;
|
|
struct wl_display *display;
|
|
};
|
|
|
|
void wl_shell_init(struct wl_display *display,
|
|
struct wl_shell_state *state);
|
|
|
|
void xdg_shell_init(struct wl_display *display,
|
|
struct xdg_shell_state *state);
|
|
|
|
void xdg_shell_release(struct xdg_shell_state *state);
|
|
|
|
#endif
|