wlroots-hyprland/include/wlr/backend/interface.h

22 lines
557 B
C
Raw Normal View History

#ifndef WLR_BACKEND_INTERFACE_H
#define WLR_BACKEND_INTERFACE_H
2017-05-07 16:00:23 +02:00
#include <stdbool.h>
#include <wlr/backend.h>
2017-10-21 03:48:58 +02:00
#include <wlr/render/egl.h>
2017-05-07 16:00:23 +02:00
struct wlr_backend_impl {
bool (*start)(struct wlr_backend *backend);
void (*destroy)(struct wlr_backend *backend);
struct wlr_renderer *(*get_renderer)(struct wlr_backend *backend);
2017-05-07 16:00:23 +02:00
};
2018-03-19 20:46:28 +01:00
/**
* Initializes common state on a wlr_backend and sets the implementation to the
* provided wlr_backend_impl reference.
*/
void wlr_backend_init(struct wlr_backend *backend,
const struct wlr_backend_impl *impl);
2017-05-07 16:00:23 +02:00
#endif