aboutsummaryrefslogtreecommitdiff
path: root/examples/compositor.h
blob: abe1a743e75964bfaedf1451fc02d6977f6fa58e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#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 wl_shell_state {
	struct wl_global *wl_global;
	struct wl_list wl_resources;
};

void wl_shell_init(struct wl_display *display,
		struct wl_shell_state *state);

#endif