mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-09 13:29:46 -05:00
wlr_compositor: change _init/finish to _create/destroy
This commit is contained in:
parent
4110788159
commit
1ca08dc4cb
3 changed files with 17 additions and 10 deletions
|
|
@ -11,9 +11,9 @@ struct wlr_compositor {
|
|||
struct wl_listener destroy_surface_listener;
|
||||
};
|
||||
|
||||
void wlr_compositor_finish(struct wlr_compositor *wlr_compositor);
|
||||
void wlr_compositor_init(struct wlr_compositor *wlr_compositor,
|
||||
struct wl_display *display, struct wlr_renderer *renderer);
|
||||
void wlr_compositor_destroy(struct wlr_compositor *wlr_compositor);
|
||||
struct wlr_compositor *wlr_compositor_create(struct wl_display *display,
|
||||
struct wlr_renderer *renderer);
|
||||
|
||||
struct wlr_surface;
|
||||
void wl_compositor_surface_destroyed(struct wlr_compositor *wlr_compositor,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue